mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-07 05:51:17 +07:00
10 lines
214 B
Makefile
10 lines
214 B
Makefile
.POSIX:
|
|
|
|
default: apply
|
|
|
|
apply:
|
|
kubectl --kubeconfig ../infra/kube_config.yaml --namespace argocd apply --filename .
|
|
|
|
delete:
|
|
kubectl --kubeconfig ../infra/kube_config.yaml --namespace argocd delete --filename .
|