mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 21:11:52 +07:00
27 lines
350 B
Makefile
27 lines
350 B
Makefile
.POSIX:
|
|
|
|
env ?= "prod"
|
|
|
|
default: boot cluster
|
|
|
|
boot:
|
|
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
|
|
|
|
lint:
|
|
ansible-lint --project-dir .
|
|
|
|
vagrant:
|
|
vagrant up
|