mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-02-06 17:20:24 +00:00
18 lines
405 B
Makefile
18 lines
405 B
Makefile
NAME=metallb
|
|
NAMESPACE=cozy-metallb
|
|
|
|
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) .
|
|
|
|
update:
|
|
rm -rf charts
|
|
helm repo add metallb https://metallb.github.io/metallb
|
|
helm repo update metallb
|
|
helm pull metallb/metallb --untar --untardir charts
|