diff options
author | Scott Dodson <sdodson@redhat.com> | 2018-02-08 19:44:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-08 19:44:21 -0500 |
commit | 3489d4f75fd2773f5fa5a684b82bf8ca44f1fa02 (patch) | |
tree | 77fc852e5bd7aa2d346b3cdd0a178d5b65f7146b /playbooks/common | |
parent | 0217c03b15bbf5ffcd5491f789de65ecb6e22ddd (diff) | |
parent | e4f4204c4dcb5d9d300a2e2cca9cabe4b7afcf94 (diff) | |
download | openshift-3489d4f75fd2773f5fa5a684b82bf8ca44f1fa02.tar.gz openshift-3489d4f75fd2773f5fa5a684b82bf8ca44f1fa02.tar.bz2 openshift-3489d4f75fd2773f5fa5a684b82bf8ca44f1fa02.tar.xz openshift-3489d4f75fd2773f5fa5a684b82bf8ca44f1fa02.zip |
Merge pull request #6926 from abutcher/etcd-ca-host
Determine which host is the etcd CA host
Diffstat (limited to 'playbooks/common')
-rw-r--r-- | playbooks/common/openshift-cluster/upgrades/pre/verify_cluster.yml | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/playbooks/common/openshift-cluster/upgrades/pre/verify_cluster.yml b/playbooks/common/openshift-cluster/upgrades/pre/verify_cluster.yml index 463a05688..4902b9ecd 100644 --- a/playbooks/common/openshift-cluster/upgrades/pre/verify_cluster.yml +++ b/playbooks/common/openshift-cluster/upgrades/pre/verify_cluster.yml @@ -94,25 +94,3 @@ state: started enabled: yes with_items: "{{ master_services }}" - -# Until openshift-ansible is determining which host is the CA host we -# must (unfortunately) ensure that the first host in the etcd group is -# the etcd CA host. -# https://bugzilla.redhat.com/show_bug.cgi?id=1469358 -- name: Verify we can proceed on first etcd - hosts: oo_first_etcd - gather_facts: no - tasks: - - name: Ensure CA exists on first etcd - stat: - path: /etc/etcd/generated_certs - register: __etcd_ca_stat - - - fail: - msg: > - In order to correct an etcd certificate signing problem - upgrading may require re-generating etcd certificates. Please - ensure that the /etc/etcd/generated_certs directory exists on - the first host defined in your [etcd] group. - when: - - not __etcd_ca_stat.stat.exists | bool |