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
parent
b665640421
commit
9e317ac2bd
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue