summaryrefslogtreecommitdiffstats
path: root/roles
diff options
context:
space:
mode:
authorBrenton Leanhardt <bleanhar@redhat.com>2015-08-18 07:53:14 -0400
committerBrenton Leanhardt <bleanhar@redhat.com>2015-08-18 07:53:14 -0400
commita92a68a0f23a81c372ea77704db5b4be5b8fb61e (patch)
tree77bb2981be2c2122f1fc97e5277f4063826b183e /roles
parent5cfae01c8cfdb58f654f9cf2b8b6d6ac7d1381e6 (diff)
parentad1e4f8ef38681ff64769fe5c9442496a44386e6 (diff)
downloadopenshift-a92a68a0f23a81c372ea77704db5b4be5b8fb61e.tar.gz
openshift-a92a68a0f23a81c372ea77704db5b4be5b8fb61e.tar.bz2
openshift-a92a68a0f23a81c372ea77704db5b4be5b8fb61e.tar.xz
openshift-a92a68a0f23a81c372ea77704db5b4be5b8fb61e.zip
Merge pull request #487 from detiber/bz1252337
Bug 1252337 - Fix for quote error in oauthConfig template
Diffstat (limited to 'roles')
-rw-r--r--roles/openshift_master/templates/v1_partials/oauthConfig.j22
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_master/templates/v1_partials/oauthConfig.j2 b/roles/openshift_master/templates/v1_partials/oauthConfig.j2
index 4ca644876..72889bc29 100644
--- a/roles/openshift_master/templates/v1_partials/oauthConfig.j2
+++ b/roles/openshift_master/templates/v1_partials/oauthConfig.j2
@@ -7,7 +7,7 @@
url: {{ identity_provider.url }}
{% for key in ('ca', 'certFile', 'keyFile') %}
{% if key in identity_provider %}
- {{ key }}: {{ identity_provider[key] }}"
+ {{ key }}: "{{ identity_provider[key] }}"
{% endif %}
{% endfor %}
{% elif identity_provider.kind == 'LDAPPasswordIdentityProvider' %}