Not able to run tomcat container in kubernetes after exposing it as a service

5/26/2017

I have created kubernetes cluster in Google could engine. I am running two pods in kubernetes and each pod has tomcat container running. I want to access this tomcat application outside the cluster that is through my browser or curl command. I have created a service as load balancer which gave me one external ip address and port. When i m trying to browser http://:port, it does not respond, it says connection time out. I have also opened a firewall for this ip address and the specific port.

Can somebody please help me to find out if i m missing anything here. I have followed all docs and even tried running it as service as node_port but that also did not work.

Thanks Abhishek Somani

-- Abhishek Somani
containers
docker
kubernetes
nginx
tomcat

1 Answer

5/28/2017
  1. Have you properly exposed the Container port 8080 of Tomcat to Host Port?
  2. Are Service and Pod labels inline?
  3. Forget about nodeport & ingress traffic, try to Curl the sample.war url from within the cluster or another container in Pod.
  4. Expose the Pod properly.
  5. Even if you are using nodeport, try to curl on http://<>:<>/sample. This will make sure that the service is getting exposed outside of Pod. NodeIP should be the IP of node running the pod, to reduce the debugging complications.
-- Subodh Pachghare
Source: StackOverflow