1234567891011121314151617181920212223242526272829303132333435363738 |
- ---
- - name: normalize groups
- import_playbook: ../../prerequisites.yml
- vars:
- skip_sanity_checks: True
- skip_validate_hostnames: True
- l_openshift_version_determine_hosts: "oo_nodes_to_config"
- l_openshift_version_set_hosts: "all:!all"
- - name: run node config setup
- import_playbook: disable_excluders.yml
- vars:
- l_node_group: oo_nodes_to_config
- - name: run node config
- import_playbook: configure_nodes.yml
- vars:
- l_node_group: oo_nodes_to_config
- - name: node bootstrap config
- hosts: oo_nodes_to_config
- tasks:
- - import_role:
- name: openshift_node
- tasks_from: bootstrap.yml
- - import_role:
- name: openshift_node_group
- tasks_from: bootstrap.yml
- - name: Re-enable excluders
- import_playbook: enable_excluders.yml
- vars:
- l_node_group: oo_nodes_to_config
- - name: Remove any undesired artifacts from build
- import_playbook: clean_image.yml
- vars:
- l_node_group: oo_nodes_to_config
|