|
@@ -26,21 +26,21 @@
|
|
|
|
|
|
- name: Set node schedulability
|
|
|
command: >
|
|
|
- {{ openshift.common.admin_binary }} manage-node {{ item.openshift.common.hostname | lower }} --schedulable={{ 'true' if item.openshift.node.schedulable | bool else 'false' }}
|
|
|
+ {{ openshift.common.admin_binary }} manage-node {{ hostvars[item].openshift.common.hostname | lower }} --schedulable={{ 'true' if hostvars[item].openshift.node.schedulable | bool else 'false' }}
|
|
|
--config={{ openshift_manage_node_kubeconfig }}
|
|
|
-n default
|
|
|
with_items:
|
|
|
- - "{{ openshift_node_vars }}"
|
|
|
- when: item.openshift.common.hostname is defined
|
|
|
+ - "{{ openshift_nodes }}"
|
|
|
+ when: hostvars[item].openshift.common.hostname is defined
|
|
|
|
|
|
- name: Label nodes
|
|
|
command: >
|
|
|
- {{ openshift.common.client_binary }} label --overwrite node {{ item.openshift.common.hostname | lower }} {{ item.openshift.node.labels | oo_combine_dict }}
|
|
|
+ {{ openshift.common.client_binary }} label --overwrite node {{ hostvars[item].openshift.common.hostname | lower }} {{ hostvars[item].openshift.node.labels | oo_combine_dict }}
|
|
|
--config={{ openshift_manage_node_kubeconfig }}
|
|
|
-n default
|
|
|
with_items:
|
|
|
- - "{{ openshift_node_vars }}"
|
|
|
- when: item.openshift.common.hostname is defined and 'labels' in item.openshift.node and item.openshift.node.labels != {}
|
|
|
+ - "{{ openshift_nodes }}"
|
|
|
+ when: hostvars[item].openshift.common.hostname is defined and 'labels' in hostvars[item].openshift.node and hostvars[item].openshift.node.labels != {}
|
|
|
|
|
|
- name: Delete temp directory
|
|
|
file:
|