blob: 300a90371ce510972a45b89741fa87784a5454fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
---
- 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: certificates.yml
- import_playbook: setup.yml
- import_playbook: containerized_nodes.yml
- import_playbook: configure_nodes.yml
- import_playbook: additional_config.yml
- import_playbook: manage_node.yml
- import_playbook: enable_excluders.yml
- 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') }}"
|