I’ve 3 servers : 1. kubernetes Master 2. kubernetes Minion1 3. kubernetes Minion2
A replication controller (with http service) running on kubernetes master with 4 replicas (pods) with a cluster IP 10.254.x.x
The cluster IP can accessible via busybox pod that is created by kubectl command.
Now I’ve installed docker on kubernetes Master server
Then start a container using docker run command. So Now My Question is: how to communicate between this docker container and kubernetes cluster IP??
The actual goal is: the docker container will act as a reverse proxy for kubernetes cluster IP
Docker container IP : 172.17.x.x
Kubernetes Pods IP : 172.17.x.x
Kubernetes cluster IP : 10.254.x.x
Thanks.