Initial commit

This commit is contained in:
2023-02-20 10:23:46 +00:00
commit f250085fb2
17 changed files with 8470 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
CHART_DIRS := $(shell find . -maxdepth 2 -name Chart.yaml -exec dirname {} \;)
PWD := $(shell pwd)
release-charts:
@for dir in $(CHART_DIRS); do \
cd $$dir; \
cr package --config ../../chart-releaser.yaml; \
cr upload --config ../../chart-releaser.yaml --skip-existing; \
cr index --config ../../chart-releaser.yaml; \
cd $(PWD); \
done