diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2015-08-18 07:53:14 -0400 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2015-08-18 07:53:14 -0400 |
commit | a92a68a0f23a81c372ea77704db5b4be5b8fb61e (patch) | |
tree | 77bb2981be2c2122f1fc97e5277f4063826b183e | |
parent | 5cfae01c8cfdb58f654f9cf2b8b6d6ac7d1381e6 (diff) | |
parent | ad1e4f8ef38681ff64769fe5c9442496a44386e6 (diff) | |
download | openshift-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
-rw-r--r-- | roles/openshift_master/templates/v1_partials/oauthConfig.j2 | 2 |
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' %} |