summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--roles/openshift_ca/tasks/main.yml3
-rw-r--r--utils/src/ooinstall/variants.py2
2 files changed, 2 insertions, 3 deletions
diff --git a/roles/openshift_ca/tasks/main.yml b/roles/openshift_ca/tasks/main.yml
index 2e147840d..e1bf7dcad 100644
--- a/roles/openshift_ca/tasks/main.yml
+++ b/roles/openshift_ca/tasks/main.yml
@@ -38,7 +38,6 @@
master_ca_missing: "{{ False in (g_master_ca_stat_result.results
| oo_collect(attribute='stat.exists')
| list) }}"
- delegate_to: "{{ openshift_ca_host }}"
run_once: true
- name: Create the master certificates if they do not already exist
@@ -52,6 +51,6 @@
--public-master={{ openshift.master.public_api_url }}
--cert-dir={{ openshift_ca_config_dir }}
--overwrite=false
- when: hostvars[openshift_ca_host].master_ca_missing | bool
+ when: master_ca_missing | bool
delegate_to: "{{ openshift_ca_host }}"
run_once: true
diff --git a/utils/src/ooinstall/variants.py b/utils/src/ooinstall/variants.py
index 2397ee9cc..1706b4165 100644
--- a/utils/src/ooinstall/variants.py
+++ b/utils/src/ooinstall/variants.py
@@ -34,7 +34,7 @@ class Variant(object):
# WARNING: Keep the versions ordered, most recent first:
-OSE = Variant('openshift-enterprise', 'OpenShift Enterprise',
+OSE = Variant('openshift-enterprise', 'OpenShift Container Platform',
[
Version('3.2', 'openshift-enterprise'),
]