123456789101112131415161718192021222324252627282930313233343536373839404142 |
- ---
- - name: Node Install Checkpoint Start
- hosts: all
- gather_facts: false
- tasks:
- - name: Set Node install 'In Progress'
- run_once: true
- set_stats:
- data:
- installer_phase_node:
- status: "In Progress"
- start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
- - import_playbook: disable_excluders.yml
- vars:
- l_node_group: oo_nodes_to_config:!oo_nodes_to_bootstrap
- - import_playbook: certificates.yml
- - import_playbook: configure_nodes.yml
- vars:
- l_node_group: oo_nodes_to_config:!oo_nodes_to_bootstrap
- - import_playbook: additional_config.yml
- - import_playbook: manage_node.yml
- - import_playbook: enable_excluders.yml
- vars:
- l_node_group: oo_nodes_to_config:!oo_nodes_to_bootstrap
- - name: Node Install Checkpoint End
- hosts: all
- gather_facts: false
- tasks:
- - name: Set Node install 'Complete'
- run_once: true
- set_stats:
- data:
- installer_phase_node:
- status: "Complete"
- end: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
|