We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89f23bd commit 30f6379Copy full SHA for 30f6379
1 file changed
docker/custom-scripts/fetch-all-helm-charts.sh
@@ -26,6 +26,9 @@ APP_DIR="kubeblocks/templates/applications"
26
fetch_helm_charts() {
27
helm template "${KB_CHART_DIR}" --output-dir "${MANIFESTS_DIR}" --set addonChartLocationBase="$1"
28
# travel all addon manifests and get the helm charts
29
+ if [ ! -d "${MANIFESTS_DIR}$2" ]; then
30
+ return
31
+ fi
32
for f in "${MANIFESTS_DIR}$2"/*; do
33
if [ -d "${f}" ]; then
34
continue
0 commit comments