docker like "links" on Kubernetes

5/26/2017

I am deploying a 5 docker containers topology into Kubernetes, one of the containers is RabbitMQ container X, and every other container has a link to that container. After setting up a link between Y and X(rabbit), Y has a new DNS record in hosts file in order to reach that container by name. Now that I am migrating to Kubernetes, is it possible to reach (ping) other container by name? am I missing something?

-- barha
docker
kubernetes

1 Answer

5/26/2017

You probably want to create a Service object for your deployment of RabbitMQ. It will be accessible by name in the DNS from within the cluster.

If you have a Service called "my-service" in Kubernetes Namespace "my-ns" a DNS record for "my-service.my-ns" is created. Pods which exist in the "my-ns" Namespace should be able to find it by simply doing a name lookup for "my-service"

For more information see the docs.

-- Oswin Noetzelmann
Source: StackOverflow