mirror of
https://github.com/khuedoan/homelab.git
synced 2025-02-08 01:54:18 +07:00
14 lines
252 B
Makefile
14 lines
252 B
Makefile
|
.POSIX:
|
||
|
.EXPORT_ALL_VARIABLES:
|
||
|
|
||
|
KUBECONFIG = ../cluster/kubeconfig.yaml
|
||
|
|
||
|
default: argocd root-app
|
||
|
|
||
|
argocd:
|
||
|
kustomize build ./system/argocd | kubectl apply -f -
|
||
|
# TODO wait for argocd
|
||
|
|
||
|
root-app:
|
||
|
kustomize build ./system/root-app | kubectl apply -f -
|