I have a VPN tunnel from gcloud to our local site.
The local site has 2 nameservers running on 172.16.248.32
and 172.16.248.32
These nameservers resolve our local domain names such as mycompany.local
How can I use these nameservers from gcloud, so the pods in my Kubernetes cluster do resolve mycompany.local as well?
You'll have to configure your upstream DNS servers to be
172.16.248.32
and the other IP.You can do it on a per pod basis like this:
So when the pods are created they include an
/etc/resolv.conf
like this:The other option will vary whether you are using coredns or kube-dns, and that is configuring stub-domains (these configs will also propagate to the
/etc/resolv.conf
file in your pods, all documented here:coredns
kube-dns