Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

fix the way configmap literal is defined #7

Merged
merged 1 commit into from
Jun 14, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkg/opencomposition.go
Original file line number Diff line number Diff line change
Expand Up @@ -352,10 +352,10 @@ func CreateK8sObjects(app *App) ([]runtime.Object, error) {
Name: k,
ValueFrom: &api_v1.EnvVarSource{
ConfigMapKeyRef: &api_v1.ConfigMapKeySelector{
api_v1.LocalObjectReference{
LocalObjectReference: api_v1.LocalObjectReference{
Name: app.Name,
},
k,
Key: k,
},
},
})
Expand Down