Skip to content

Commit 9e317ac

Browse files
committed
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.
1 parent b665640 commit 9e317ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: pkg/minikube/bootstrapper/images/images.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ func coreDNS(v semver.Version, mirror string) string {
7474
case 11:
7575
cv = "1.1.3"
7676
}
77-
return path.Join(kubernetesRepo(mirror), "coredns"+archTag(false)+cv)
77+
return path.Join(kubernetesRepo(mirror), "coredns"+":"+cv)
7878
}
7979

8080
// etcd returns the image used for etcd

0 commit comments

Comments
 (0)