mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-21 15:41:17 +00:00
22 lines
718 B
Makefile
22 lines
718 B
Makefile
NAME=ingress-nginx
|
|
NAMESPACE=cozy-ingress-nginx
|
|
|
|
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 ingress-nginx https://kubernetes.github.io/ingress-nginx
|
|
helm repo update ingress-nginx
|
|
helm pull ingress-nginx/ingress-nginx --untar --untardir charts
|
|
patch -p 3 < patches/add-metrics2.patch
|
|
rm -f charts/ingress-nginx/templates/controller-deployment.yaml.orig
|
|
rm -rf charts/ingress-nginx/changelog/
|
|
#sed -i '/ type:/a \ allocateLoadBalancerNodePorts: false' charts/ingress-nginx/templates/controller-service.yaml
|