mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-21 12:41:15 +00:00
18 lines
531 B
Makefile
18 lines
531 B
Makefile
NAMESPACE=cozy-system
|
|
NAME=platform
|
|
|
|
show:
|
|
helm template -n $(NAMESPACE) $(NAME) . --dry-run=server
|
|
|
|
apply:
|
|
helm template -n $(NAMESPACE) $(NAME) . --dry-run=server | kubectl apply -f-
|
|
|
|
namespaces-show:
|
|
helm template -n $(NAMESPACE) $(NAME) . --dry-run=server -s templates/namespaces.yaml
|
|
|
|
namespaces-apply:
|
|
helm template -n $(NAMESPACE) $(NAME) . --dry-run=server -s templates/namespaces.yaml | kubectl apply -f-
|
|
|
|
diff:
|
|
helm template -n $(NAMESPACE) $(NAME) . --dry-run=server -s templates/namespaces.yaml | kubectl diff -f-
|