chore: registry.k8s.io for coredns image

Replace docker.io with registry.k8s.io for the coredns image.

Signed-off-by: Eirik Askheim <eirik@x13.no>
Signed-off-by: Andrey Smirnov <andrey.smirnov@talos-systems.com>
This commit is contained in:
Eirik Askheim 2023-05-26 18:54:11 +02:00 committed by Andrey Smirnov
parent f2b258b373
commit 2292f36d97
No known key found for this signature in database
GPG Key ID: 7B26396447AB6DFD
2 changed files with 4 additions and 4 deletions

View File

@ -325,11 +325,11 @@ const (
KubernetesSchedulerImage = "registry.k8s.io/kube-scheduler"
// CoreDNSImage is the enforced CoreDNS image to use.
CoreDNSImage = "docker.io/coredns/coredns"
CoreDNSImage = "registry.k8s.io/coredns/coredns"
// DefaultCoreDNSVersion is the default version for the CoreDNS.
// renovate: datasource=github-releases depName=coredns/coredns
DefaultCoreDNSVersion = "1.10.1"
DefaultCoreDNSVersion = "v1.10.1"
// LabelNodeRoleControlPlane is the node label required by a control plane node.
LabelNodeRoleControlPlane = "node-role.kubernetes.io/control-plane"

View File

@ -611,7 +611,7 @@ etcd:
{{< /highlight >}}</details> | |
|`coreDNS` |<a href="#coredns">CoreDNS</a> |Core DNS specific configuration options. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
coreDNS:
image: docker.io/coredns/coredns:1.10.1 # The `image` field is an override to the default coredns image.
image: registry.k8s.io/coredns/coredns:v1.10.1 # The `image` field is an override to the default coredns image.
{{< /highlight >}}</details> | |
|`externalCloudProvider` |<a href="#externalcloudproviderconfig">ExternalCloudProviderConfig</a> |External cloud provider configuration. <details><summary>Show example(s)</summary>{{< highlight yaml >}}
externalCloudProvider:
@ -1319,7 +1319,7 @@ Appears in:
{{< highlight yaml >}}
image: docker.io/coredns/coredns:1.10.1 # The `image` field is an override to the default coredns image.
image: registry.k8s.io/coredns/coredns:v1.10.1 # The `image` field is an override to the default coredns image.
{{< /highlight >}}