Skip to content

Commit

Permalink
Merge pull request #3430 from jcantrill/bz_1417261_quote_secret
Browse files Browse the repository at this point in the history
bug 1417261. Quote name and secrets in logging templates
  • Loading branch information
sdodson committed Feb 24, 2017
2 parents e660703 + dee01dd commit cecc1f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/openshift_logging/templates/secret.j2
@@ -1,9 +1,9 @@
apiVersion: v1
kind: Secret
metadata:
name: {{secret_name}}
name: "{{secret_name}}"
type: Opaque
data:
{% for s in secrets %}
{{s.key}}: {{s.value | b64encode}}
"{{s.key}}" : "{{s.value | b64encode}}"
{% endfor %}

0 comments on commit cecc1f8

Please sign in to comment.