From 9e317ac2bd1f0993769d6e48127f6e70139f729a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Anders=20F=20Bj=C3=B6rklund?= Date: Wed, 8 Jan 2020 23:08:29 +0100 Subject: [PATCH] Do not use an arch suffix for the coredns name They are using multi-arch images instead... So don't append something like -arm64 to it. Just use e.g. "k8s.gcr.io/coredns:1.6.5", and Docker will pull the right platform image. --- pkg/minikube/bootstrapper/images/images.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/minikube/bootstrapper/images/images.go b/pkg/minikube/bootstrapper/images/images.go index 80a06f385e7b..508faf10f5a5 100644 --- a/pkg/minikube/bootstrapper/images/images.go +++ b/pkg/minikube/bootstrapper/images/images.go @@ -74,7 +74,7 @@ func coreDNS(v semver.Version, mirror string) string { case 11: cv = "1.1.3" } - return path.Join(kubernetesRepo(mirror), "coredns"+archTag(false)+cv) + return path.Join(kubernetesRepo(mirror), "coredns"+":"+cv) } // etcd returns the image used for etcd