mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 13:08:52 +07:00
13 lines
164 B
Makefile
13 lines
164 B
Makefile
.POSIX:
|
|
.EXPORT_ALL_VARIABLES:
|
|
|
|
KUBECONFIG = ../infra/kube_config.yaml
|
|
|
|
default: apply
|
|
|
|
apply:
|
|
kubectl apply --kustomize .
|
|
|
|
destroy:
|
|
kubectl delete --kustomize .
|