Prechádzať zdrojové kódy

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 rokov pred
rodič
commit
81a197a6ee

+ 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: