khuedoan-homelab/metal/Makefile
Khue Doan d808ae96dd refactor(metal): split main playbook to boot and cluster
Easier to only apply k3s config
2021-11-25 18:26:44 +07:00

22 lines
274 B
Makefile

.POSIX:
default: boot cluster
boot:
ansible-playbook \
--inventory hosts.yml \
main.yml
cluster:
ansible-playbook \
--inventory hosts.yml \
cluster.yml
shutdown:
ansible-playbook \
--inventory hosts.yml \
shutdown.yml
lint:
ansible-lint --project-dir .