X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=shell%2Fhelm-repo-init.sh;h=937f0e7d0485cd7602b3786b328a32b576eacf29;hb=ed9075e2a3373e8be386eb821283d2736c4b9185;hp=fb2f81029f93256bd05e6b94debe23077d079b4a;hpb=f35b52ed34c15537fdba4c906dfe14b97f3a85c5;p=ci-management.git diff --git a/shell/helm-repo-init.sh b/shell/helm-repo-init.sh old mode 100644 new mode 100755 index fb2f81029..937f0e7d0 --- a/shell/helm-repo-init.sh +++ b/shell/helm-repo-init.sh @@ -2,8 +2,10 @@ # Ensure we fail the job if any steps fail set -e -o pipefail -# client only init, tiller will not be installed -helm init --client-only -cd kubernetes/ || exit -make repo -cd .. +mkdir -p ".chartstorage" + +chartmuseum --port=6464 --storage="local" --storage-local-rootdir=".chartstorage" &> /dev/null & +source helm.prop +$HELM_BIN plugin install https://github.com/chartmuseum/helm-push.git +$HELM_BIN repo add local http://localhost:6464 +$HELM_BIN repo add onap http://localhost:6464