diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-05-19 16:01:03 -0400 |
---|---|---|
committer | Scott Dodson <sdodson@redhat.com> | 2017-05-19 17:22:42 -0400 |
commit | 1a868e61fbab8f1e2095c0952031656c47926220 (patch) | |
tree | 04ac7a4554c56f2d8d87c7ee5cec115b15e2661f /playbooks | |
parent | c3f96b1f9f77cbd105d082a216b4761ca040bcf7 (diff) | |
download | openshift-1a868e61fbab8f1e2095c0952031656c47926220.tar.gz openshift-1a868e61fbab8f1e2095c0952031656c47926220.tar.bz2 openshift-1a868e61fbab8f1e2095c0952031656c47926220.tar.xz openshift-1a868e61fbab8f1e2095c0952031656c47926220.zip |
Tolerate failures in the node upgrade playbook
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml | 2 | ||||
-rw-r--r-- | playbooks/common/openshift-cluster/upgrades/upgrade_nodes.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml b/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml index 0ad934d2d..a335c1072 100644 --- a/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml +++ b/playbooks/common/openshift-cluster/upgrades/upgrade_control_plane.yml @@ -248,7 +248,7 @@ # This var must be set with -e on invocation, as it is not a per-host inventory var # and is evaluated early. Values such as "20%" can also be used. serial: "{{ openshift_upgrade_nodes_serial | default(1) }}" - any_errors_fatal: true + max_fail_percentage: "{{ openshift_upgrade_nodes_max_fail_percentage | default(0) }}" pre_tasks: - name: Load lib_openshift modules diff --git a/playbooks/common/openshift-cluster/upgrades/upgrade_nodes.yml b/playbooks/common/openshift-cluster/upgrades/upgrade_nodes.yml index 4d455fe0a..91dbc2cd4 100644 --- a/playbooks/common/openshift-cluster/upgrades/upgrade_nodes.yml +++ b/playbooks/common/openshift-cluster/upgrades/upgrade_nodes.yml @@ -4,7 +4,7 @@ # This var must be set with -e on invocation, as it is not a per-host inventory var # and is evaluated early. Values such as "20%" can also be used. serial: "{{ openshift_upgrade_nodes_serial | default(1) }}" - any_errors_fatal: true + max_fail_percentage: "{{ openshift_upgrade_nodes_max_fail_percentage | default(0) }}" pre_tasks: - name: Load lib_openshift modules |