summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master
diff options
context:
space:
mode:
authorJason DeTiberus <jdetiber@redhat.com>2015-08-17 12:15:33 -0400
committerJason DeTiberus <jdetiber@redhat.com>2015-08-17 12:15:52 -0400
commitad1e4f8ef38681ff64769fe5c9442496a44386e6 (patch)
treed5efcee9def4b5962110e7e07e6255d3ffdb2d2a /roles/openshift_master
parent30d653aa5b776afbf35c98b1b5e7436f8cb7123c (diff)
downloadopenshift-ad1e4f8ef38681ff64769fe5c9442496a44386e6.tar.gz
openshift-ad1e4f8ef38681ff64769fe5c9442496a44386e6.tar.bz2
openshift-ad1e4f8ef38681ff64769fe5c9442496a44386e6.tar.xz
openshift-ad1e4f8ef38681ff64769fe5c9442496a44386e6.zip
Bug 1252337 - Fix for quote error in oauthConfig template
https://bugzilla.redhat.com/show_bug.cgi?id=1252337
Diffstat (limited to 'roles/openshift_master')
-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' %}