|
@@ -14,7 +14,7 @@
|
|
|
|
|
|
- name: Wait for Node Registration
|
|
|
command: >
|
|
|
- {{ openshift.common.client_binary }} get node {{ item | lower }}
|
|
|
+ {{ openshift.common.client_binary }} get node {{ hostvars[item].openshift.common.hostname | lower }}
|
|
|
--config={{ openshift_manage_node_kubeconfig }}
|
|
|
-n default
|
|
|
register: omd_get_node
|
|
@@ -29,8 +29,7 @@
|
|
|
{{ 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_nodes }}"
|
|
|
+ with_items: "{{ openshift_nodes }}"
|
|
|
when: hostvars[item].openshift.common.hostname is defined
|
|
|
|
|
|
- name: Label nodes
|
|
@@ -38,8 +37,7 @@
|
|
|
{{ 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_nodes }}"
|
|
|
+ with_items: "{{ 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
|