2021-02-07 02:37:41 +07:00
|
|
|
- name: Start PXE server on the controller
|
2021-02-07 13:12:05 +07:00
|
|
|
hosts: controller
|
2021-02-07 02:37:41 +07:00
|
|
|
roles:
|
2021-02-07 13:12:05 +07:00
|
|
|
- { role: pxe-server, tag: pxe-server }
|
2021-02-07 02:37:41 +07:00
|
|
|
|
2021-02-08 10:09:02 +07:00
|
|
|
- name: Shutdown all nodes
|
2021-02-12 15:41:50 +07:00
|
|
|
hosts: metal
|
2021-02-08 10:09:02 +07:00
|
|
|
roles:
|
|
|
|
- { role: shutdown, tag: shutdown }
|
|
|
|
ignore_unreachable: yes
|
|
|
|
|
2021-02-07 02:37:41 +07:00
|
|
|
- name: Wake all nodes up
|
2021-02-12 15:41:50 +07:00
|
|
|
hosts: metal
|
2021-02-07 02:37:41 +07:00
|
|
|
gather_facts: no
|
|
|
|
roles:
|
|
|
|
- { role: wake, tag: wake }
|
2021-02-12 21:09:21 +07:00
|
|
|
|
|
|
|
- name: Install etcd for Terraform state
|
|
|
|
hosts: etcd
|
|
|
|
roles:
|
|
|
|
- { role: etcd, tag: etcd }
|