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.
pull/6243/head
Anders F Björklund 2020-01-08 23:08:29 +01:00
parent b665640421
commit 9e317ac2bd
1 changed files with 1 additions and 1 deletions

View File

@ -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