diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2015-07-08 23:19:27 -0400 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2015-07-10 04:28:40 -0400 |
commit | 025011c1e462d8419b81d8c5085cb92163ac4280 (patch) | |
tree | 4fb0521c26e69ebf17428761ae29c3b6c44a9671 /playbooks | |
parent | b03b50a7a408470c28f2c8d1752cda541b75f8ee (diff) | |
download | openshift-025011c1e462d8419b81d8c5085cb92163ac4280.tar.gz openshift-025011c1e462d8419b81d8c5085cb92163ac4280.tar.bz2 openshift-025011c1e462d8419b81d8c5085cb92163ac4280.tar.xz openshift-025011c1e462d8419b81d8c5085cb92163ac4280.zip |
Bug 1241342 - Adding retry logic to handle node registration race conditions
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/common/openshift-node/config.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/playbooks/common/openshift-node/config.yml b/playbooks/common/openshift-node/config.yml index 2017a7156..1cf5616ce 100644 --- a/playbooks/common/openshift-node/config.yml +++ b/playbooks/common/openshift-node/config.yml @@ -139,6 +139,9 @@ - name: Set scheduleability hosts: oo_first_master vars: + openshift_nodes: "{{ hostvars + | oo_select_keys(groups['oo_nodes_to_config']) + | oo_collect('openshift.common.hostname') }}" openshift_unscheduleable_nodes: "{{ hostvars | oo_select_keys(groups['oo_nodes_to_config']) | oo_collect('openshift.common.hostname', {'openshift_scheduleable': False}) }}" |