khuedoan-homelab/metal/Makefile
Khue Doan 9f0d389abc feat!: install Cilium
Installed using Ansible instead of ArgoCD because Cilium replaces
the default CNI, so ArgoCD pod cannot be scheduled before Cilium
is installed.
2023-12-22 00:31:16 +07:00

24 lines
394 B
Makefile

.POSIX:
env ?= prod
export KUBECONFIG = $(shell pwd)/kubeconfig.yaml
default: boot cluster
~/.ssh/id_ed25519:
ssh-keygen -t ed25519 -P '' -f "$@"
boot: ~/.ssh/id_ed25519
ansible-playbook \
--inventory inventories/${env}.yml \
boot.yml
cluster:
ansible-playbook \
--inventory inventories/${env}.yml \
cluster.yml
console:
ansible-console \
--inventory inventories/${env}.yml