This message was deleted.
# k3s
a
This message was deleted.
l
you can create a separate configmap in the kube-system namespace named
coredns-custom
if you look at the main config file for core dns (named
Corefile
), you'll see two include statements: https://github.com/k3s-io/k3s/blob/master/manifests/coredns.yaml#L75-L77
the ConfigMap coredns-custom gets mounted to /etc/coredns/custom/
so you can create files names
something.override
and/or
something-else.server
in the coredns-custom ConfigMap and they will get included via those statements
👍 1