From 13eb32b03be06d80a3b229ce2f121efd935b5645 Mon Sep 17 00:00:00 2001 From: Paul Carlton Date: Tue, 4 Oct 2022 13:43:32 +0100 Subject: [PATCH] add dependencies --- src/entrypoint.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/entrypoint.sh b/src/entrypoint.sh index 0f3ff38..133a6e1 100644 --- a/src/entrypoint.sh +++ b/src/entrypoint.sh @@ -33,6 +33,7 @@ APP_VERSION=${12} CHART_VERSION=${13} INDEX_DIR=${14} ENTERPRISE_URL=${15} +DEPENDENCIES=${$16} CHARTS=() CHARTS_TMP_DIR=$(mktemp -d) @@ -126,8 +127,13 @@ download() { rm -rf $tmpDir } -get_repo() { - helm repo add matrixx https://raw.githubusercontent.com/weaveworks-20276/customer-info/gh-pages --username paul-calton --password ${GITHUB_TOKEN} +get_dependencies() { + IFS=';' read -ra depenency <<< "$DEPENDENCIES" + for repos in ${dependency[@]}; do + name=$(cut -f 1 -d, <<< "$repos") + url=$(cut -f 2 -d, <<< "$repos") + helm repo add ${name} ${url} + done } dependencies() { @@ -183,7 +189,7 @@ upload() { git add ${INDEX_DIR}/index.yaml git commit -m "Publish $charts" - git push origin ${BRANCH} + git push ${BRANCH} popd >& /dev/null rm -rf $tmpDir