Update helm repo

According to https://review.opendev.org/804262

Change-Id: I1d80edee7e6272092bc383d8af370b58c68e5d3d
Signed-off-by: Andrii Ostapenko <andrii.ostapenko@att.com>
This commit is contained in:
Andrii Ostapenko 2021-08-11 10:25:46 -06:00
parent 8c272abb66
commit 2db85f62f0
No known key found for this signature in database
GPG Key ID: F3E83668DBB223B3
1 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ RUN set -ex; \
GOOGLE_REPO_URL=https://storage.googleapis.com ;\
MINIKUBE_REPO_URL=${GOOGLE_REPO_URL}/minikube/releases/${MINIKUBE_VERSION} ;\
GOOGLE_KUBERNETES_REPO_URL=${GOOGLE_REPO_URL}/kubernetes-release/release/${KUBE_VERSION}/bin/linux/amd64 ;\
GOOGLE_HELM_REPO_URL=${GOOGLE_REPO_URL}/kubernetes-helm ;\
HELM_REPO_URL=https://get.helm.sh ;\
CNI_REPO_URL=https://github.com/containernetworking/plugins/releases/download/${CNI_VERSION} ;\
BINARY_DIR=/opt/binaries ;\
mkdir ${BINARY_DIR}; \
@ -56,7 +56,7 @@ RUN set -ex; \
curl -sSLo ${BINARY_DIR}/${BINARY} ${GOOGLE_KUBERNETES_REPO_URL}/${BINARY} ;\
done ;\
TMP_DIR=$(mktemp -d) ;\
curl -sSL ${GOOGLE_HELM_REPO_URL}/helm-${HELM_VERSION}-linux-amd64.tar.gz | tar -zxv --strip-components=1 -C ${TMP_DIR} ;\
curl -sSL ${HELM_REPO_URL}/helm-${HELM_VERSION}-linux-amd64.tar.gz | tar -zxv --strip-components=1 -C ${TMP_DIR} ;\
mv ${TMP_DIR}/helm ${BINARY_DIR} ;\
rm -rf ${TMP_DIR} ;\
chmod +x ${BINARY_DIR}/* ;\