Fix update-helm-repos.sh
This commit is contained in:
@@ -1,18 +1,17 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
repos=(
|
repos=(
|
||||||
"jetstack=https://charts.jetstack.io"
|
"stable=https://charts.helm.sh/stable"
|
||||||
"stable=https://kubernetes-charts.storage.googleapis.com/"
|
"ingress-nginx=https://kubernetes.github.io/ingress-nginx"
|
||||||
|
"prometheus-community=https://prometheus-community.github.io/helm-charts"
|
||||||
|
"hashicorp=https://helm.releases.hashicorp.com"
|
||||||
|
"bitnami=https://charts.bitnami.com/bitnami"
|
||||||
"minio=https://helm.min.io/"
|
"minio=https://helm.min.io/"
|
||||||
"anchore=https://charts.anchore.io"
|
"anchore=https://charts.anchore.io"
|
||||||
"prometheus-community=https://prometheus-community.github.io/helm-charts"
|
|
||||||
"bitnami=https://charts.bitnami.com/bitnami"
|
|
||||||
"hashicorp=https://helm.releases.hashicorp.com"
|
|
||||||
"ingress-nginx=https://kubernetes.github.io/ingress-nginx"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
IFS=";"
|
|
||||||
for i in $repos; do
|
for i in $repos; do
|
||||||
|
IFS="="
|
||||||
set $i
|
set $i
|
||||||
helm repo add $1 $2
|
helm repo add $1 $2
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user