setup_bootstrap.yml 888 B

1234567891011121314151617181920212223
  1. ---
  2. # We exclude all nodes that have already been bootstrapped or have requested not to be bootstrapped
  3. - name: Evaluate node groups
  4. hosts: localhost
  5. connection: local
  6. tasks:
  7. - name: Evaluate oo_exclude_nodes_to_config as all nodes that shouldn't be configured for bootstrapping
  8. add_host:
  9. name: "{{ item }}"
  10. groups: oo_exclude_nodes_to_config
  11. ansible_ssh_user: "{{ g_ssh_user | default(omit) }}"
  12. ansible_become: "{{ g_sudo | default(omit) }}"
  13. with_items: "{{ groups.oo_nodes_to_config | default([]) }}"
  14. when:
  15. - (not (hostvars[item].openshift_node_bootstrap | default(True) | bool)) or (hostvars[item].openshift_is_bootstrapped | bool)
  16. changed_when: False
  17. - name: Disable excluders
  18. hosts: oo_nodes_to_config:!oo_exclude_nodes_to_config
  19. gather_facts: no
  20. roles:
  21. - role: openshift_excluder
  22. r_openshift_excluder_action: disable