Hi. I’m having DNS issues in my kubernetes cluster. I’m trying to install the openwhisk helm chart but it’s failing. The errors of the pods are things like that it cannot github.com.
I tried switching to google dns, but I’m not sure if I was successful. I don’t know how to check. I used the following command kubectl -n kube-system edit configmap coredns to edit the configmap. I edited this:
forward . /etc/resolv.conf {
max_concurrent 1000
}```
to make it look like this:
``` prometheus :9153
forward . 8.8.8.8 8.8.4.4 {
max_concurrent 1000
}```
Then restarted coredns like this: `kubectl rollout restart -n kube-system deployment/coredns` .
But no luck.
I've also tried setting `resolv-conf` to a file that has `nameserver 8.8.8.8` in it, but no luck.
Any ideas?