mirror of
https://github.com/khuedoan/homelab.git
synced 2025-01-08 14:33:52 +07:00
17 lines
268 B
Makefile
17 lines
268 B
Makefile
.POSIX:
|
|
.EXPORT_ALL_VARIABLES:
|
|
|
|
KUBECONFIG = ../metal/kubeconfig.yaml
|
|
|
|
default: namespace apply
|
|
|
|
charts: Chart.yaml
|
|
helm dependency update
|
|
|
|
namespace:
|
|
kubectl create namespace argocd --dry-run=client --output=yaml \
|
|
| kubectl apply -f -
|
|
|
|
apply: charts
|
|
./apply.sh
|