Skip to content

Commit 769ee32

Browse files
authored
Merge pull request #12377 from medyagh/helm-fix
fix deprecated image in helm addon
2 parents 4f005bd + 8c096cc commit 769ee32

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pkg/minikube/assets/addons.go

+4-2
Original file line numberDiff line numberDiff line change
@@ -467,9 +467,11 @@ var Addons = map[string]*Addon{
467467
"helm-tiller-svc.yaml",
468468
"0640"),
469469
}, false, "helm-tiller", "", map[string]string{
470-
"Tiller": "kubernetes-helm/tiller:v2.16.12@sha256:6003775d503546087266eda39418d221f9afb5ccfe35f637c32a1161619a3f9c",
470+
"Tiller": "helm/tiller:v2.16.12@sha256:6003775d503546087266eda39418d221f9afb5ccfe35f637c32a1161619a3f9c",
471471
}, map[string]string{
472-
"Tiller": "gcr.io",
472+
// GCR is deprecated in helm
473+
// https://github.com/helm/helm/issues/10004#issuecomment-894478908
474+
"Tiller": "ghcr.io",
473475
}),
474476
"ingress-dns": NewAddon([]*BinAsset{
475477
MustBinAsset(addons.IngressDNSAssets,

0 commit comments

Comments
 (0)