diff options
author | Scott Dodson <sdodson@redhat.com> | 2016-12-09 11:20:50 -0500 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2016-12-09 11:21:05 -0500 |
commit | 833e9d9024743e01ca3f1a6caefc9a725f0b66a2 (patch) | |
tree | 4868335834f0b4ae676e5b36bc07b212c0836a6f /playbooks/common/openshift-cluster/upgrades | |
parent | ce39c9084bc20df242bbbef3a2a5b1c8060cbe9d (diff) | |
download | openshift-833e9d9024743e01ca3f1a6caefc9a725f0b66a2.tar.gz openshift-833e9d9024743e01ca3f1a6caefc9a725f0b66a2.tar.bz2 openshift-833e9d9024743e01ca3f1a6caefc9a725f0b66a2.tar.xz openshift-833e9d9024743e01ca3f1a6caefc9a725f0b66a2.zip |
upgrades - Fix logic error about when to backup etcd
Diffstat (limited to 'playbooks/common/openshift-cluster/upgrades')
-rw-r--r-- | playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml b/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml index f74ea9820..dad80796c 100644 --- a/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml +++ b/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml @@ -29,7 +29,7 @@ - name: Backup etcd include: ./etcd/backup.yml - when: openshift_upgrade_skip_etcd_backup | default(false) | bool + when: not openshift_upgrade_skip_etcd_backup | default(false) | bool - name: Upgrade master packages hosts: oo_masters_to_config |