You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Is there a way to use the use custom entries in the CoreDNS by editing the coredns-custom ConfigMap?
I tried like this: https://docs.microsoft.com/en-us/azure/aks/coredns-custom with no success, only directly editing the main coredns ConfigMap I get what I need, but this one is reset on cluster restart.
I'm trying to enabling log and set some manual host entries.
Besides, hosts that are declared in my Windows hosts file is present in WSL rancher-desktop, but this entries is not getting resolved, it should
This is the ConfigMap that I'm trying:
apiVersion: v1
kind: ConfigMap
metadata:
name: coredns-custom
namespace: kube-system
data:
log.override: |
log
hosts.override: |
hosts {
192.168.2.1 registry.internal.com
fallthrough
}
Beta Was this translation helpful? Give feedback.
All reactions