From 8fac247cff6173a9fed5cc38ed5926b3517ab060 Mon Sep 17 00:00:00 2001 From: Fabien Sanglier Date: Tue, 10 Sep 2024 16:54:43 -0400 Subject: [PATCH] update build and publish chart --- charts/.gitignore | 1 + charts/readme.md | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 charts/.gitignore create mode 100644 charts/readme.md diff --git a/charts/.gitignore b/charts/.gitignore new file mode 100644 index 0000000..d163863 --- /dev/null +++ b/charts/.gitignore @@ -0,0 +1 @@ +build/ \ No newline at end of file diff --git a/charts/readme.md b/charts/readme.md new file mode 100644 index 0000000..e84191c --- /dev/null +++ b/charts/readme.md @@ -0,0 +1,11 @@ +# notes to build and publish the chart to the public repo + +mkdir -p ./build/ + +helm package -u -d build/ continuous-curl-runner/ + +helm repo index --merge ${WEBMETHODS_HELMCHART_HOME}/docs/index.yaml ./build/ + +echo "Copying new index and updated packages to the final repo location" +cp -f build/index.yaml ${WEBMETHODS_HELMCHART_HOME}/docs/ +cp -f build/*.tgz ${WEBMETHODS_HELMCHART_HOME}/docs/ \ No newline at end of file