rancher-charts/Makefile

26 lines
620 B
Makefile
Raw Normal View History

help:
./bin/charts-build-scripts --help
pull-scripts:
./scripts/pull-scripts
2022-01-04 00:10:36 +00:00
remove:
./scripts/remove-asset
2022-03-07 19:33:22 +00:00
forward-port:
./scripts/forward-port
2023-09-07 02:52:40 +00:00
check-release-yaml:
./scripts/check-release-yaml
validate:
@./scripts/pull-scripts
@./bin/charts-build-scripts validate $(if $(filter true,$(remote)),--remote) $(if $(filter true,$(local)),--local)
TARGETS := prepare patch clean clean-cache charts list index unzip zip standardize template regsync check-images check-rc enforce-lifecycle lifecycle-status auto-forward-port
$(TARGETS):
2022-01-04 00:10:36 +00:00
@./scripts/pull-scripts
@./bin/charts-build-scripts $@
.PHONY: $(TARGETS)