From 466269de453b7b35c71589d229f542cc3e1cb45a Mon Sep 17 00:00:00 2001 From: Ajay Kemparaj Date: Wed, 10 Feb 2021 10:41:07 -0800 Subject: [PATCH] Move helm repo from to (#75) more details here https://helm.sh/blog/new-location-stable-incubator-charts/ Signed-off-by: ajayk --- helm-dependency/README.md | 4 ++-- helm-dependency/requirements.yaml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/helm-dependency/README.md b/helm-dependency/README.md index 0e24c56..7353e26 100644 --- a/helm-dependency/README.md +++ b/helm-dependency/README.md @@ -10,7 +10,7 @@ In this example, the wordpress application is pulled from the stable helm repo, dependencies: - name: wordpress version: 5.0.2 - repository: https://kubernetes-charts.storage.googleapis.com + repository: https://charts.helm.sh/stable ``` A custom values.yaml is used to customize the parameters of the wordpress helm chart: @@ -31,7 +31,7 @@ The wordpress chart referenced in this example contains a subchart for mariadb a ```yaml - name: mariadb version: 5.x.x - repository: https://kubernetes-charts.storage.googleapis.com/ + repository: https://charts.helm.sh/stable condition: mariadb.enabled tags: - wordpress-database diff --git a/helm-dependency/requirements.yaml b/helm-dependency/requirements.yaml index 258e5d3..c56eac5 100644 --- a/helm-dependency/requirements.yaml +++ b/helm-dependency/requirements.yaml @@ -1,4 +1,4 @@ dependencies: - name: wordpress version: 5.0.2 - repository: https://kubernetes-charts.storage.googleapis.com + repository: https://charts.helm.sh/stable