From 4059a21dc4eba9cd27b2d5b0fabe476c07a8b3bd Mon Sep 17 00:00:00 2001 From: Oleksii Moskalenko Date: Thu, 28 Jan 2021 21:10:25 +0800 Subject: [PATCH] update helm chart repo Signed-off-by: Oleksii Moskalenko --- .github/workflows/release.yml | 2 +- infra/charts/feast/requirements.yaml | 8 ++++---- infra/scripts/install-helm.sh | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f377a138e7..157a593d35 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -101,7 +101,7 @@ jobs: runs-on: ubuntu-latest needs: get-version env: - HELM_VERSION: v2.16.9 + HELM_VERSION: v2.17.0 steps: - uses: actions/checkout@v2 - uses: GoogleCloudPlatform/github-actions/setup-gcloud@master diff --git a/infra/charts/feast/requirements.yaml b/infra/charts/feast/requirements.yaml index 26a8ab7bcc..9987c96814 100644 --- a/infra/charts/feast/requirements.yaml +++ b/infra/charts/feast/requirements.yaml @@ -11,7 +11,7 @@ dependencies: condition: feast-jupyter.enabled - name: postgresql version: 8.6.1 - repository: https://kubernetes-charts.storage.googleapis.com/ + repository: https://charts.helm.sh/stable condition: postgresql.enabled - name: kafka version: 11.8.8 @@ -19,16 +19,16 @@ dependencies: condition: kafka.enabled - name: redis version: 10.5.6 - repository: https://kubernetes-charts.storage.googleapis.com/ + repository: https://charts.helm.sh/stable condition: redis.enabled - name: prometheus-statsd-exporter version: 0.1.2 condition: prometheus-statsd-exporter.enabled - name: prometheus version: 11.0.2 - repository: https://kubernetes-charts.storage.googleapis.com/ + repository: https://charts.helm.sh/stable condition: prometheus.enabled - name: grafana version: 5.0.5 - repository: https://kubernetes-charts.storage.googleapis.com/ + repository: https://charts.helm.sh/stable condition: grafana.enabled diff --git a/infra/scripts/install-helm.sh b/infra/scripts/install-helm.sh index 3a6221a2e0..3686f9dfdb 100755 --- a/infra/scripts/install-helm.sh +++ b/infra/scripts/install-helm.sh @@ -2,8 +2,8 @@ set -e readonly HELM_URL=https://storage.googleapis.com/kubernetes-helm readonly HELM_TARBALL="helm-${HELM_VERSION}-linux-amd64.tar.gz" -readonly STABLE_REPO_URL=https://kubernetes-charts.storage.googleapis.com/ -readonly INCUBATOR_REPO_URL=https://kubernetes-charts-incubator.storage.googleapis.com/ +readonly STABLE_REPO_URL=https://charts.helm.sh/stable +readonly INCUBATOR_REPO_URL=https://charts.helm.sh/incubator curl -s "https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz" | tar -C /tmp -xz sudo mv /tmp/linux-amd64/helm /usr/bin/helm helm init --client-only