From 26e9245809880f95227035aa0d7bd24b236d345a Mon Sep 17 00:00:00 2001 From: "Ernesto R. C. Pereda" Date: Mon, 21 Dec 2020 14:11:12 -0500 Subject: [PATCH] Update deps.sh Updating helm versions to avoid this issue ``` Error: error initializing: Looks like "https://kubernetes-charts.storage.googleapis.com" is not a valid chart repository or cannot be reached: Failed to fetch https://kubernetes-charts.storage.googleapis.com/index.yaml : 403 Forbidden ``` https://helm.sh/blog/new-location-stable-incubator-charts/ --- src/deps.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/deps.sh b/src/deps.sh index 26feea2..76d812e 100755 --- a/src/deps.sh +++ b/src/deps.sh @@ -6,8 +6,8 @@ curl -sL "https://storage.googleapis.com/kubernetes-release/release/$(curl -s ht curl -sL https://github.com/mikefarah/yq/releases/download/3.4.1/yq_linux_amd64 -o /usr/local/bin/yq && chmod +x /usr/local/bin/yq -curl -sSL https://get.helm.sh/helm-v2.16.3-linux-amd64.tar.gz | tar xz && mv linux-amd64/helm /bin/helm && rm -rf linux-amd64 +curl -sSL https://get.helm.sh/helm-v2.17.0-linux-amd64.tar.gz | tar xz && mv linux-amd64/helm /bin/helm && rm -rf linux-amd64 helm init --client-only --kubeconfig="${HOME}/.kube/kubeconfig" -curl -sSL https://get.helm.sh/helm-v3.1.1-linux-amd64.tar.gz | tar xz && mv linux-amd64/helm /bin/helmv3 && rm -rf linux-amd64 +curl -sSL https://get.helm.sh/helm-v3.4.0-linux-amd64.tar.gz | tar xz && mv linux-amd64/helm /bin/helmv3 && rm -rf linux-amd64 helmv3 version