Skip to content

Commit

Permalink
Do not use an arch suffix for the coredns name
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
afbjorklund committed Jan 13, 2020
1 parent b665640 commit 9e317ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/minikube/bootstrapper/images/images.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9e317ac

Please sign in to comment.