mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-08 14:33:52 +07:00
3e47e54192
This reverts commit 9b0b19bab1
.
16 lines
268 B
Makefile
16 lines
268 B
Makefile
.POSIX:
|
|
.EXPORT_ALL_VARIABLES:
|
|
|
|
KUBECONFIG = ../metal/kubeconfig.yaml
|
|
|
|
default: argocd root-app
|
|
|
|
.PHONY: argocd
|
|
argocd:
|
|
kustomize build ./argocd | kubectl apply -f -
|
|
# TODO wait for argocd
|
|
|
|
.PHONY: root-app
|
|
root-app:
|
|
kustomize build ./root-app | kubectl apply -f -
|