diff options
author | Jason DeTiberus <detiber@gmail.com> | 2016-11-21 14:31:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-21 14:31:05 -0500 |
commit | e2d6fe37d6a599715d3136cd396ca8f27b5fb9b7 (patch) | |
tree | caddeb6e2dd712dbefb014bcd8598f91ce0383ce /playbooks/common/openshift-cluster | |
parent | f5d74f47e0c22c24ca9f34f9a979c730d8e6ffd3 (diff) | |
parent | 448c33754c7b5e7cde997a20e137825e85dde6d2 (diff) | |
download | openshift-e2d6fe37d6a599715d3136cd396ca8f27b5fb9b7.tar.gz openshift-e2d6fe37d6a599715d3136cd396ca8f27b5fb9b7.tar.bz2 openshift-e2d6fe37d6a599715d3136cd396ca8f27b5fb9b7.tar.xz openshift-e2d6fe37d6a599715d3136cd396ca8f27b5fb9b7.zip |
Merge pull request #2827 from abutcher/BZ1377619
Allow ansible to continue when a node is unaccessible or fails.
Diffstat (limited to 'playbooks/common/openshift-cluster')
-rw-r--r-- | playbooks/common/openshift-cluster/initialize_facts.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/playbooks/common/openshift-cluster/initialize_facts.yml b/playbooks/common/openshift-cluster/initialize_facts.yml index 6d83d2527..18f99728c 100644 --- a/playbooks/common/openshift-cluster/initialize_facts.yml +++ b/playbooks/common/openshift-cluster/initialize_facts.yml @@ -1,7 +1,11 @@ --- +- name: Ensure that all non-node hosts are accessible + hosts: oo_masters_to_config:oo_etcd_to_config:oo_lb_to_config:oo_nfs_to_config + any_errors_fatal: true + tasks: + - name: Initialize host facts hosts: oo_all_hosts - any_errors_fatal: true roles: - openshift_facts tasks: |