summaryrefslogtreecommitdiffstats
path: root/roles/openshift_manage_node/tasks/main.yml
blob: cee1f173817715eb5b1ef599dc2f6fa3f1658751 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- name: Wait for Node Registration
  command: >
      {{ openshift.common.client_binary }} get node {{ item | lower }}
  register: omd_get_node
  until: omd_get_node.rc == 0
  retries: 50
  delay: 5
  changed_when: false
  with_items: openshift_nodes

- 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' }}
  with_items:
    -  "{{ openshift_node_vars }}"

- name: Label nodes
  command: >
    {{ openshift.common.client_binary }} label --overwrite node {{ item.openshift.common.hostname | lower }} {{ item.openshift.node.labels | oo_combine_dict  }}
  with_items:
    -  "{{ openshift_node_vars }}"
  when: "'labels' in item.openshift.node and item.openshift.node.labels != {}"