kubezero/Makefile

18 lines
303 B
Makefile
Raw Normal View History

BUCKET ?= zero-downtime
BUCKET_PREFIX ?= /cloudbender/distfiles
FILES ?= distfiles.txt
.PHONY: update docs
all: update
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