diff --git a/docs/docs/helm.mdx b/docs/docs/helm.mdx index fcc362778..377f7b2e0 100644 --- a/docs/docs/helm.mdx +++ b/docs/docs/helm.mdx @@ -142,7 +142,7 @@ to add it: version: 1 repositories: - name: stable - url: https://kubernetes-charts.storage.googleapis.com + url: https://charts.helm.sh/stable + - name: grafana + url: https://grafana.github.io/helm-charts ``` diff --git a/pkg/helm/charts.go b/pkg/helm/charts.go index 37eb1d1a3..0876349b4 100644 --- a/pkg/helm/charts.go +++ b/pkg/helm/charts.go @@ -162,7 +162,7 @@ func InitChartfile(path string) (*Charts, error) { Version: Version, Repositories: []Repo{{ Name: "stable", - URL: "https://kubernetes-charts.storage.googleapis.com", + URL: "https://charts.helm.sh/stable", }}, Requires: make(Requirements, 0), }