Przeglądaj źródła

Guard check for container install based on openshift dictionary key

Adam Young 7 lat temu
rodzic
commit
58a69b0c1c
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      playbooks/common/openshift-node/config.yml

+ 1 - 1
playbooks/common/openshift-node/config.yml

@@ -32,7 +32,7 @@
       ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
       ansible_become: "{{ g_sudo | default(omit) }}"
     with_items: "{{ groups.oo_nodes_to_config | default([]) }}"
-    when: hostvars[item].openshift.common is defined and hostvars[item].openshift.common.is_containerized | bool and (item in groups.oo_nodes_to_config and item in groups.oo_masters_to_config)
+    when: hostvars[item].openshift is defined and hostvars[item].openshift.common is defined and hostvars[item].openshift.common.is_containerized | bool and (item in groups.oo_nodes_to_config and item in groups.oo_masters_to_config)
     changed_when: False
 
 - name: Configure containerized nodes