Skip to content

Commit 7f764b2

Browse files
committed
update helm chart repo
Signed-off-by: Oleksii Moskalenko <moskalenko.alexey@gmail.com>
1 parent 4f7650a commit 7f764b2

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
runs-on: ubuntu-latest
102102
needs: get-version
103103
env:
104-
HELM_VERSION: v2.16.9
104+
HELM_VERSION: v2.17.0
105105
steps:
106106
- uses: actions/checkout@v2
107107
- uses: GoogleCloudPlatform/github-actions/setup-gcloud@master

infra/charts/feast/requirements.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,24 @@ dependencies:
1111
condition: feast-jupyter.enabled
1212
- name: postgresql
1313
version: 8.6.1
14-
repository: https://kubernetes-charts.storage.googleapis.com/
14+
repository: https://charts.helm.sh/stable
1515
condition: postgresql.enabled
1616
- name: kafka
1717
version: 11.8.8
1818
repository: https://charts.bitnami.com/bitnami/
1919
condition: kafka.enabled
2020
- name: redis
2121
version: 10.5.6
22-
repository: https://kubernetes-charts.storage.googleapis.com/
22+
repository: https://charts.helm.sh/stable
2323
condition: redis.enabled
2424
- name: prometheus-statsd-exporter
2525
version: 0.1.2
2626
condition: prometheus-statsd-exporter.enabled
2727
- name: prometheus
2828
version: 11.0.2
29-
repository: https://kubernetes-charts.storage.googleapis.com/
29+
repository: https://charts.helm.sh/stable
3030
condition: prometheus.enabled
3131
- name: grafana
3232
version: 5.0.5
33-
repository: https://kubernetes-charts.storage.googleapis.com/
33+
repository: https://charts.helm.sh/stable
3434
condition: grafana.enabled

infra/scripts/install-helm.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
set -e
33
readonly HELM_URL=https://storage.googleapis.com/kubernetes-helm
44
readonly HELM_TARBALL="helm-${HELM_VERSION}-linux-amd64.tar.gz"
5-
readonly STABLE_REPO_URL=https://kubernetes-charts.storage.googleapis.com/
6-
readonly INCUBATOR_REPO_URL=https://kubernetes-charts-incubator.storage.googleapis.com/
5+
readonly STABLE_REPO_URL=https://charts.helm.sh/stable
6+
readonly INCUBATOR_REPO_URL=https://charts.helm.sh/incubator
77
curl -s "https://get.helm.sh/helm-${HELM_VERSION}-linux-amd64.tar.gz" | tar -C /tmp -xz
88
sudo mv /tmp/linux-amd64/helm /usr/bin/helm
99
helm init --client-only

0 commit comments

Comments
 (0)