mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-05 13:08:52 +07:00
750614c866
Instead of make target
16 lines
233 B
Makefile
16 lines
233 B
Makefile
.POSIX:
|
|
|
|
default: namespace argocd root
|
|
|
|
namespace:
|
|
kubectl create namespace argocd --dry-run=client --output=yaml \
|
|
| kubectl apply -f -
|
|
|
|
.PHONY: argocd
|
|
argocd:
|
|
cd argocd && ./apply.sh
|
|
|
|
.PHONY: root
|
|
root:
|
|
cd root && ./apply.sh
|