mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-21 20:41:26 +00:00
12 lines
256 B
Makefile
12 lines
256 B
Makefile
NAME=capi-providers
|
|
NAMESPACE=cozy-cluster-api
|
|
|
|
show:
|
|
helm template --dry-run=server -n $(NAMESPACE) $(NAME) .
|
|
|
|
apply:
|
|
helm upgrade -i -n $(NAMESPACE) $(NAME) .
|
|
|
|
diff:
|
|
helm diff upgrade --allow-unreleased --normalize-manifests -n $(NAMESPACE) $(NAME) .
|