mirror of
https://github.com/outbackdingo/cozystack.git
synced 2026-03-20 03:09:35 +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>
12 lines
403 B
Makefile
12 lines
403 B
Makefile
NAME=ingress
|
|
|
|
include ../../../scripts/package.mk
|
|
|
|
update: get-cloudflare-ips
|
|
|
|
get-cloudflare-ips:
|
|
printf '{{- define "ingress.cloudflare-ips" -}}\n%s,%s\n{{- end }}\n' "$$(curl -s https://www.cloudflare.com/ips-v4/ | tr '\n' ,)" "$$(curl -s https://www.cloudflare.com/ips-v6/ | tr '\n' ,)" > templates/_cloudflare-ips.tpl
|
|
|
|
generate:
|
|
readme-generator -v values.yaml -s values.schema.json -r README.md
|