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

Commit

Permalink
Merge pull request #7 from surajssd/configmap_object_literal
Browse files Browse the repository at this point in the history
fix the way configmap literal is defined
  • Loading branch information
concaf committed Jun 14, 2017
2 parents a2ec828 + f578124 commit 0b3be69
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit 0b3be69

Please sign in to comment.