Browse Source

Only look for etcd pod on etcd hosts that are colocated w/ master

Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1586008
Scott Dodson 6 years ago
parent
commit
81a197a6ee
1 changed files with 3 additions and 1 deletions
  1. 3 1
      roles/openshift_control_plane/tasks/main.yml

+ 3 - 1
roles/openshift_control_plane/tasks/main.yml

@@ -256,9 +256,11 @@
   retries: 60
   delay: 5
   with_items:
-  - "{{ 'etcd' if inventory_hostname in groups['oo_etcd_to_config'] else omit }}"
+  - "{{ 'etcd' if inventory_hostname in groups['oo_etcd_to_config'] else '' }}"
   - api
   - controllers
+  when:
+  - item != ''
 
 - when: control_plane_health is failed
   block: