12 lines
227 B
Makefile
12 lines
227 B
Makefile
all: setup k3s wg
|
|
|
|
setup:
|
|
ansible-playbook -i "inventory/hosts.yml" "init.yml"
|
|
|
|
wg:
|
|
ansible-playbook -i "inventory/hosts.yml" "wireguard/wireguard.yml"
|
|
|
|
k3s:
|
|
ansible-playbook -i "inventory/hosts.yml" "k3s-ansible/site.yml"
|
|
|