Remove the stable helm repo from helm verification 06/5206/1
authorZhe Huang <zhehuang@research.att.com>
Tue, 1 Dec 2020 23:36:43 +0000 (18:36 -0500)
committerZhe Huang <zhehuang@research.att.com>
Tue, 1 Dec 2020 23:36:43 +0000 (18:36 -0500)
Signed-off-by: Zhe Huang <zhehuang@research.att.com>
Change-Id: Ib30f266d6e679ed8c8e5f36a6f3a2f491ad11826

bin/verify-ric-charts
ci/Dockerfile

index 2a8b9e6..e9630c4 100755 (executable)
@@ -67,6 +67,7 @@ $HELM_COMMAND package --save=false -d ./charts "$ROOT_DIR/dep/ric-common/Common-
 $HELM_COMMAND repo index ./charts
 # Make sure that helm local repo is added
 $HELM_COMMAND repo remove local
+$HELM_COMMAND repo remove stable
 $HELM_COMMAND repo add local http://127.0.0.1:8879/charts
 # Remove it/dep charts
 rm -rf ./dep
index 27618f5..7274a5e 100644 (file)
@@ -22,7 +22,7 @@ ARG GH=get_helm.sh
 # often times out during LF jenkins build
 RUN curl --silent --show-error --connect-timeout 10 --retry 6 -L https://raw.githubusercontent.com/helm/helm/master/scripts/get -o ${GH}
 RUN bash ${GH}
-RUN helm init -c
+RUN helm init -c --skip-repos
 ARG TGT=/tmp/ric-plt-ric-dep
 COPY . $TGT
 RUN $TGT/bin/verify-ric-charts