I have tried before on Openshift Origin 3.9 and Online. I have deployed a simple hello world php app on Openshift. It has a Service and a Route.
When I call the route, I am getting expected output with Hello world and the Pod IP. Let's call this pod ip as 1.1.1.1
Now i deployed same app with small text change with same label under same Service. Let's call this pod ip as 2.2.2.2
I can see both pods running in a single Service. Now when I call the route, it always shows Podip 1.1.1.1 My route never hits the second pod.
My understand is Route will call the Service and Service will load balance between available pods.
But it isn't happening. Any help is appreciated.