summaryrefslogtreecommitdiffstats
path: root/playbooks/common/openshift-node/config.yml
blob: 4f8f98aef61ef67003c80ab0444348e0395e5f11 (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
---
- name: Node Install Checkpoint Start
  hosts: oo_all_hosts
  gather_facts: false
  tasks:
  - name: Set Node install 'In Progress'
    set_stats:
      data:
        installer_phase_node: "In Progress"
      aggregate: false

- include: certificates.yml

- include: setup.yml

- include: containerized_nodes.yml

- include: configure_nodes.yml

- include: additional_config.yml

- include: manage_node.yml

- include: enable_excluders.yml

- name: Node Install Checkpoint End
  hosts: oo_all_hosts
  gather_facts: false
  tasks:
  - name: Set Node install 'Complete'
    set_stats:
      data:
        installer_phase_node: "Complete"
      aggregate: false