Skip to main content
Add a zone to CoreDNS
Last update:

Add a zone to CoreDNS

To add your own zone to the CoreDNS configuration in a cluster, use ConfigMap.

  1. Create a manifest for ConfigMap. Specify the name coredns-custom and the namespace kube-system. The name of the file that is created via ConfigMap must end with the postfix .custom. Manifesto example:

    apiVersion: v1
    kind: ConfigMap
    metadata:
    name: coredns-custom
    namespace: kube-system
    data:
    test.custom: |
    example.com:53 {
    whoami
    }
  2. Restart the CoreDNS pods:

    kubectl delete po -n kube-system -l k8s-app=kube-dns