1234567891011121314151617181920212223 |
- ---
- # We exclude all nodes that have already been bootstrapped or have requested not to be bootstrapped
- - name: Evaluate node groups
- hosts: localhost
- connection: local
- tasks:
- - name: Evaluate oo_exclude_nodes_to_config as all nodes that shouldn't be configured for bootstrapping
- add_host:
- name: "{{ item }}"
- groups: oo_exclude_nodes_to_config
- ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
- ansible_become: "{{ g_sudo | default(omit) }}"
- with_items: "{{ groups.oo_nodes_to_config | default([]) }}"
- when:
- - (not (hostvars[item].openshift_node_bootstrap | default(True) | bool)) or (hostvars[item].openshift_is_bootstrapped | bool)
- changed_when: False
- - name: Disable excluders
- hosts: oo_nodes_to_config:!oo_exclude_nodes_to_config
- gather_facts: no
- roles:
- - role: openshift_excluder
- r_openshift_excluder_action: disable
|