diff options
author | Andrew Butcher <abutcher@redhat.com> | 2016-08-24 10:13:11 -0400 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2016-08-24 10:13:11 -0400 |
commit | ca2239d0364ba60e43f071424c36063789bc11cb (patch) | |
tree | 908bf8697d3a36b06002818e0d57f3229d689f72 | |
parent | 46856f244abfcf02bc84a95de191cfce4c62c04d (diff) | |
download | openshift-ca2239d0364ba60e43f071424c36063789bc11cb.tar.gz openshift-ca2239d0364ba60e43f071424c36063789bc11cb.tar.bz2 openshift-ca2239d0364ba60e43f071424c36063789bc11cb.tar.xz openshift-ca2239d0364ba60e43f071424c36063789bc11cb.zip |
Correct masterCA config typo.
-rw-r--r-- | roles/openshift_master/templates/master.yaml.v1.j2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/openshift_master/templates/master.yaml.v1.j2 b/roles/openshift_master/templates/master.yaml.v1.j2 index 31e86f5bd..e9beed3b3 100644 --- a/roles/openshift_master/templates/master.yaml.v1.j2 +++ b/roles/openshift_master/templates/master.yaml.v1.j2 @@ -173,7 +173,7 @@ oauthConfig: {% if openshift.common.version_gte_3_2_or_1_2 | bool %} masterCA: ca-bundle.crt {% else %} - masterCA: ca.rt + masterCA: ca.crt {% endif %} masterPublicURL: {{ openshift.master.public_api_url }} masterURL: {{ openshift.master.api_url }} @@ -210,7 +210,7 @@ serviceAccountConfig: {% if openshift.common.version_gte_3_2_or_1_2 | bool %} masterCA: ca-bundle.crt {% else %} - masterCA: ca.rt + masterCA: ca.crt {% endif %} privateKeyFile: serviceaccounts.private.key publicKeyFiles: |