kubezero/Makefile

26 lines
593 B
Makefile
Raw Permalink Normal View History

2022-04-08 15:09:40 +00:00
REGISTRY := public.ecr.aws/zero-downtime
2022-05-11 10:00:53 +00:00
IMAGE := kubezero-admin
REGION := us-east-1
# Use KubeZero chart version rather than git tag for admin image
GIT_TAG = v$(shell yq .version < charts/kubezero/Chart.yaml)
# Also tag as Kubernetes major version
EXTRA_TAGS = $(shell echo $(GIT_TAG) | awk -F '.' '{ print $$1 "." $$2 }')
2022-05-11 10:00:53 +00:00
include .ci/podman.mk
2022-04-08 15:09:40 +00:00
update-charts:
2021-01-27 12:20:11 +00:00
./scripts/update_helm.sh
2021-01-21 10:53:53 +00:00
2022-04-08 15:09:40 +00:00
update-chart-docs:
2021-01-21 10:53:53 +00:00
for c in charts/*; do \
[[ $$c =~ "kubezero-lib" ]] && continue ; \
[[ $$c =~ "kubeadm" ]] && continue ; \
helm-docs -c $$c ; \
done
2021-01-27 12:20:11 +00:00
2022-04-08 15:09:40 +00:00
publish-charts:
2021-01-27 12:20:11 +00:00
./scripts/publish.sh
2022-04-08 15:09:40 +00:00