Kubernetes with Google Cloud DNS -


using google container engine cluster running kubernetes, process in order point http://mydomain.co.uk onto loadbalanced replicationcontroller?

i'm aware kubernetes supports skydns - how go delegating google cloud dns domain name onto internal kubernetes cluster dns service?

you need create service maps onto pods in replication controller , expose service outside of cluster. have 2 options expose web service externally:

  1. set service type: loadbalancer provision network load balancer.
  2. use ingress support in kubernetes create http(s) load balancer.

the end result of either option have public ip address routed service backed replication controller.

once have ip address, need manually configure dns record point domain name @ ip address.


Comments