Skip to content

Commit

Permalink
Fix gomplate example
Browse files Browse the repository at this point in the history
  • Loading branch information
Marko Mikulicic committed Oct 29, 2019
1 parent c1c208d commit bdb1661
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/examples/config-template/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ data:
"port": "22",
"env": "SOME_ENV",
"user": "myuser",
"password": "{{ (ds "secrets").server1 }}",
"password": "{{ (ds "secrets" "server1") }}",
"role": "foo"
},{
"host": "barfoo",
"ip": "10.10.10.11",
"port": "22",
"env": "SOME_OTHER_STUFF",
"user": "otheruser",
"password": "{{ (ds "secrets").server2 }}",
"password": "{{ (ds "secrets" "server2") }}",
"role": "foo"
}
],
Expand All @@ -31,7 +31,7 @@ data:
"sid": "FOO",
"env": "BAZ",
"user": "abcdefg123",
"password": "{{ (ds "secrets").database1 }}",
"password": "{{ (ds "secrets" "database1") }}",
"role": "foo"
}
]
Expand Down

0 comments on commit bdb1661

Please sign in to comment.