ソースを参照

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 年 前
コミット
81a197a6ee
1 ファイル変更3 行追加1 行削除
  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: