khuedoan-homelab/metal/Makefile
Khue Doan 9e59f1ad81 chore: cleanup lint targets
Let CI pipeline do it
2021-12-27 11:36:47 +07:00

27 lines
382 B
Makefile

.POSIX:
env ?= "prod"
default: boot cluster
~/.ssh/id_ed25519:
ssh-keygen -t ed25519 -f "$@"
boot: ~/.ssh/id_ed25519
ansible-playbook \
--inventory inventories/${env}.ini \
boot.yml
cluster:
ansible-playbook \
--inventory inventories/${env}.ini \
cluster.yml
shutdown:
ansible-playbook \
--inventory inventories/${env}.ini \
shutdown.yml
vagrant:
vagrant up