mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-09 06:47:01 +07:00
10 lines
160 B
Makefile
10 lines
160 B
Makefile
.POSIX:
|
|
|
|
default: apply
|
|
|
|
apply:
|
|
kubectl --kubeconfig ../infra/kube_config.yaml apply -f .
|
|
|
|
delete:
|
|
kubectl --kubeconfig ../infra/kube_config.yaml delete -f .
|