mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-21 22:41:33 +00:00
19 lines
448 B
Makefile
19 lines
448 B
Makefile
NAME=kamaji
|
|
NAMESPACE=cozy-kamaji
|
|
|
|
show:
|
|
helm template --dry-run=server -n $(NAMESPACE) $(NAME) .
|
|
|
|
apply:
|
|
flux suspend hr kamaji -n cozy-kamaji || true
|
|
helm upgrade -i -n $(NAMESPACE) $(NAME) .
|
|
|
|
diff:
|
|
helm diff upgrade --allow-unreleased --normalize-manifests -n $(NAMESPACE) $(NAME) .
|
|
|
|
update:
|
|
rm -rf charts
|
|
helm repo add clastix https://clastix.github.io/charts
|
|
helm repo update clastix
|
|
helm pull clastix/kamaji --untar --untardir charts
|