mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-22 02:07:46 +07:00
d808ae96dd
Easier to only apply k3s config
22 lines
274 B
Makefile
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 .
|