kubezero/Makefile

22 lines
335 B
Makefile
Raw Normal View History

BUCKET ?= zero-downtime
BUCKET_PREFIX ?= /cloudbender/distfiles
FILES ?= distfiles.txt
2021-01-21 10:53:53 +00:00
.PHONY: clean update docs
all: update
clean:
2021-01-03 15:33:13 +00:00
rm -f kube*.tgz
update:
./script/update_helm.sh
2021-01-21 10:53:53 +00:00
docs:
for c in charts/*; do \
[[ $$c =~ "kubezero-lib" ]] && continue ; \
[[ $$c =~ "kubeadm" ]] && continue ; \
helm-docs -c $$c ; \
done