Przeglądaj źródła

Don't try to label node if there's no labels

Diego Castro 9 lat temu
rodzic
commit
9a41d23f55
1 zmienionych plików z 2 dodań i 0 usunięć
  1. 2 0
      roles/openshift_manage_node/tasks/main.yml

+ 2 - 0
roles/openshift_manage_node/tasks/main.yml

@@ -22,3 +22,5 @@
     {{ openshift.common.client_binary }} label --overwrite node {{ item }} {{ hostvars[item]['openshift_node_labels'] | oo_combine_dict  }}
   with_items:
     -  "{{ openshift_nodes }}"
+  when: 
+    "'openshift_node_labels' in hostvars[item]"