Files
Andrei Kvapil e33d94b4cb autoinstall completed
Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
2024-01-03 12:58:56 +01:00

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-