mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-01-27 10:18:39 +00:00
This change is aimed at improving the development experience. - The option `make delete` has been added. - Added check for `NAME` and `NAMESPACE` variables - Now, any package (not just system ones) can include options such as make show, make diff, make apply. - Applications from packages/extra require explicit specification of the `NAMESPACE`. - Applications from packages/apps require explicit specification of both `NAME` and `NAMESPACE`. Signed-off-by: Andrei Kvapil <kvapss@gmail.com>
13 lines
431 B
Makefile
13 lines
431 B
Makefile
NAME=ingress-nginx-system
|
|
|
|
include ../../../scripts/package.mk
|
|
|
|
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 --no-backup-if-mismatch -p 3 < patches/add-metrics2.patch
|
|
rm -f charts/ingress-nginx/templates/controller-deployment.yaml.orig
|
|
rm -rf charts/ingress-nginx/changelog/
|