Customizing CoreDNS on an OVHcloud Managed Kubernetes cluster
Find out how to customize CoreDNS on an OVHcloud Managed Kubernetes cluster
Find out how to customize CoreDNS on an OVHcloud Managed Kubernetes cluster
Last updated 11th October 2022
The OVHcloud Managed Kubernetes service provides you with Kubernetes clusters without the hassle of installing or operating them.
The OVHcloud Managed Kubernetes clusters are using CoreDNS as a DNS server for Service Discovery.
At OVHcloud, we listen to our users and improve our products and services accordingly, which is why we give you the ability to customize the CoreDNS configuration, thanks to the expansion mechanism in a special ConfigMap which is not modified by a redeployment.
In an OVHcloud Managed Kubernetes cluster the DNS are handled by CoreDNS.
Take a look at the ConfigMap
to see the default configuration.
kubectl get configmap coredns -n kube-system -o yaml
The result should be similar to the following:
$ kubectl get configmap coredns -n kube-system -o yaml
apiVersion: v1
data:
Corefile: |
.:53 {
errors
health {
lameduck 5s
}
ready
kubernetes cluster.local in-addr.arpa ip6.arpa {
pods insecure
fallthrough in-addr.arpa ip6.arpa
ttl 30
}
prometheus :9153
forward . /etc/resolv.conf {
prefer_udp
policy sequential
}
cache 30
loop
reload
loadbalance
import custom/*.include
log
}
import custom/*.server
kind: ConfigMap
metadata:
creationTimestamp: "2022-09-22T07:00:39Z"
labels:
addonmanager.kubernetes.io/mode: EnsureExists
name: coredns
namespace: kube-system
resourceVersion: "5786561917"
uid: a4e7310b-50b9-4976-a014-13e4bee12344
When the Kubernetes Control Plane is redeployed or when the cluster is upgrading to the latest patch, this default CoreDNS configuration is restored to the default one.
To understand what this CoreDNS configuration means, please read the CoreDNS official documentation and CoreDNS plugins documentation.
If you want to edit and customize the CoreDNS configuration, it can be done by editing the coredns-custom
ConfigMap, which will never be altered by OVHCloud services:
$ kubectl get cm coredns-custom -n kube-system -o yaml
apiVersion: v1
data:
example.include: |
# Include .:53 example
example.server: |
# Server example
kind: ConfigMap
metadata:
creationTimestamp: "2022-10-10T09:14:03Z"
labels:
addonmanager.kubernetes.io/mode: EnsureExists
name: coredns-custom
namespace: kube-system
resourceVersion: "5786561924"
uid: 95c51a5d-c413-4520-b84d-a16892626620
You can add some new configuration in data.example.include
and data.example.server
blocks.
Edit the coredns-custom
ConfigMap with the following command:
kubectl edit cm coredns-custom -n kube-system
For example, if you want to use a custom nameserver that will point to your private DNS all FQDN resolutions for *.myprivatedomain.com
:
$ kubectl edit cm coredns-custom -n kube-system
# Please edit the object below. Lines beginning with a '#' will be ignored,
# and an empty file will abort the edit. If an error occurs while saving this file will be
# reopened with the relevant failures.
#
apiVersion: v1
data:
example.include: |
# Include .:53 example
myprivatedomain.server: |
myprivatedomain.com.:53 {
forward . [my-custom-dns-server-private-ip]
}
kind: ConfigMap
metadata:
creationTimestamp: "2022-10-10T09:14:03Z"
labels:
addonmanager.kubernetes.io/mode: EnsureExists
name: coredns-custom
namespace: kube-system
resourceVersion: "5786561924"
uid: 95c51a5d-c413-4520-b84d-a16892626620
Check the logs to make sure that the customization has been applied:
kubectl logs -n kube-system -l k8s-app=kube-dns -f
Full private DNS resolution is not possible, only private domain can be resolved. This means that public FQDN are resolved by the public OVHcloud DNS. For example, when resolving kubernetes.io
from a Pod, first the CoreDNS resolves to .:53
which is the default nameserver then it resolves the /etc/resolv.conf
of the underlying worker Node. Then it resolves the public OVHcloud DNS (which is configured by the OVHcloud Managed Kubernetes).
When upgrading the cluster Nodes (or when a node restarts), the CoreDNS pod can be restarted and takes the new configuration. That's for this reason you need to customize the configuration through the coredns-custom
ConfigMap.
CoreDNS is configured to reload its configuration (ConfigMap here) every 30 seconds.
New Kubernetes clusters will have the new CoreDNS Deployment & ConfigMaps, whereas the old ones will need to update their control plane to the latest patch.
To have an overview of the OVHcloud Managed Kubernetes service, you can go to the OVHcloud Managed Kubernetes page.
To learn more about how to use your Kubernetes cluster the practical way, we invite you to read our tutorials.
Join our community of users.
Zachęcamy do przesyłania sugestii, które pomogą nam ulepszyć naszą dokumentację.
Obrazy, zawartość, struktura - podziel się swoim pomysłem, my dołożymy wszelkich starań, aby wprowadzić ulepszenia.
Zgłoszenie przesłane za pomocą tego formularza nie zostanie obsłużone. Skorzystaj z formularza "Utwórz zgłoszenie" .
Dziękujemy. Twoja opinia jest dla nas bardzo cenna.
Dostęp do OVHcloud Community Przesyłaj pytania, zdobywaj informacje, publikuj treści i kontaktuj się z innymi użytkownikami OVHcloud Community.
Porozmawiaj ze społecznością OVHcloud