diff options
author | Michael Gugino <mgugino@redhat.com> | 2017-12-08 17:03:06 -0500 |
---|---|---|
committer | Michael Gugino <mgugino@redhat.com> | 2017-12-08 17:03:06 -0500 |
commit | ed4d3fb42125405f8dd0765b4a42c618a9916f22 (patch) | |
tree | be753393fe1d08e7047a0fedc03a271d7fb91b84 /playbooks/common | |
parent | 091acb2cd3d0ab2a6019d9e96a22e6fed1c0ca9a (diff) | |
download | openshift-ed4d3fb42125405f8dd0765b4a42c618a9916f22.tar.gz openshift-ed4d3fb42125405f8dd0765b4a42c618a9916f22.tar.bz2 openshift-ed4d3fb42125405f8dd0765b4a42c618a9916f22.tar.xz openshift-ed4d3fb42125405f8dd0765b4a42c618a9916f22.zip |
Remove unneeded embedded etcd logic
Removing some remaining embedded etcd facts except
for the migration plays.
Diffstat (limited to 'playbooks/common')
-rw-r--r-- | playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml b/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml index 37fc8a0f6..7b82fe05b 100644 --- a/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml +++ b/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml @@ -2,20 +2,6 @@ ############################################################################### # Upgrade Masters ############################################################################### - -# If facts cache were for some reason deleted, this fact may not be set, and if not set -# it will always default to true. This causes problems for the etcd data dir fact detection -# so we must first make sure this is set correctly before attempting the backup. -- name: Set master embedded_etcd fact - hosts: oo_masters_to_config - roles: - - openshift_facts - tasks: - - openshift_facts: - role: master - local_facts: - embedded_etcd: "{{ groups.oo_etcd_to_config | default([]) | length == 0 }}" - - name: Backup and upgrade etcd import_playbook: ../../../openshift-etcd/private/upgrade_main.yml |