mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-08 14:33:52 +07:00
22 lines
433 B
YAML
22 lines
433 B
YAML
- name: Start PXE server on the controller
|
|
hosts: controller
|
|
roles:
|
|
- { role: pxe-server, tag: pxe-server }
|
|
|
|
- name: Shutdown all nodes
|
|
hosts: metal
|
|
roles:
|
|
- { role: shutdown, tag: shutdown }
|
|
ignore_unreachable: yes
|
|
|
|
- name: Wake all nodes up
|
|
hosts: metal
|
|
gather_facts: no
|
|
roles:
|
|
- { role: wake, tag: wake }
|
|
|
|
- name: Install etcd for Terraform state
|
|
hosts: etcd
|
|
roles:
|
|
- { role: etcd, tag: etcd }
|