diff options
author | Andrew Butcher <abutcher@redhat.com> | 2018-01-29 15:25:47 -0500 |
---|---|---|
committer | Andrew Butcher <abutcher@redhat.com> | 2018-02-01 16:54:47 -0500 |
commit | 0975e4657f4e93eaac2fee3f3fce09e8aa3ac07f (patch) | |
tree | 6a29281ca4bfb8edb36dc1a97fafd74c48a9c8ab /playbooks/common/openshift-cluster/upgrades | |
parent | 8d2f2d7820b5c238f4723e4eade3882ca7332685 (diff) | |
download | openshift-0975e4657f4e93eaac2fee3f3fce09e8aa3ac07f.tar.gz openshift-0975e4657f4e93eaac2fee3f3fce09e8aa3ac07f.tar.bz2 openshift-0975e4657f4e93eaac2fee3f3fce09e8aa3ac07f.tar.xz openshift-0975e4657f4e93eaac2fee3f3fce09e8aa3ac07f.zip |
Remove pre upgrade verification step re: etcd ca host.
Diffstat (limited to 'playbooks/common/openshift-cluster/upgrades')
-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 5ee8a9d78..693ab2d96 100644 --- a/playbooks/common/openshift-cluster/upgrades/pre/verify_cluster.yml +++ b/playbooks/common/openshift-cluster/upgrades/pre/verify_cluster.yml @@ -92,25 +92,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 |