I'm currently setting up a Kubernetes cluster where both private and public services are run. While public services should be accessible via the internet (and FQDNs), private services should not (the idea is to run a VPN inside the cluster where private services should be accessible via simple FQDNs).
At the moment, I'm using nginx-ingress and configure Ingress resources where I set the hostname for public resources. external-dns then adds the corresponding DNS records (in Google CloudDNS) - this already works.
The problem I'm facing now: I'm unsure about how I can add DNS records in the same way (i.e. simply specifying a host in Ingress
definitions and using some ingress-class private
), yet have these DNS records only be accessible from within the cluster.
I was under the impression that I can add these records to the Corefile
that CoreDNS is using. However, I fail to figure out how this can be automated.
Thank you for any help!
Service
for each internal service, you can reach them using the service name. Each service will be added to the DNS when it is created. The name will be visible within the cluster only. – Burak Serdar