1

From the kubernetes dashboard, I can see all my deployment, pod & replication is Green successfully deploy from the Continuous Deployment pipeline VSTS.

My issue is unable to view the site. enter image description here

Can anyone help me how to start troubleshooting

Herman
  • 2,832
  • 6
  • 25
  • 37
  • Can you access the server through a web browser? – Charles Xu Jul 26 '18 at 06:08
  • I able to tunnel into kubernetes proxy using "az aks browse -g XXXX -n XXXX" – Herman Jul 26 '18 at 06:11
  • Yeah, that's the Kubernets dashboard. I mean if you can call the web which deploy as a pod named identityapi? – Charles Xu Jul 26 '18 at 06:16
  • @CharlesXu-MSFT are you able to be more details. >> https://imgur.com/a/tLYafW8 << basically I need to go to the Services > IdentityApi > External endpoints and click the IP. It redirects into browser and response "This site can’t be reached" – Herman Jul 26 '18 at 06:23
  • You can ssh into the Kubernets node and check if the configuration of the identitiapi is all right. – Charles Xu Jul 26 '18 at 06:48
  • @CharlesXu-MSFT k I have fixed it. "docker inspect images identity.api" I realized the port is still 80 which in my docker-compose port is 5000:80 – Herman Jul 26 '18 at 07:18
  • Let us [continue this discussion in chat](https://chat.stackoverflow.com/rooms/176771/discussion-between-charles-xu-msft-and-herman). – Charles Xu Jul 26 '18 at 07:18

1 Answers1

1

You can access the identityapi with the public IP through a browser. If you cannot access the web, you should check the configuration of the identityapi. And then ssh into the Kubernets node to check if the identityapi service work well. Check the configuration of the service if it is the same as the Kubernets dashboard shows.

Charles Xu
  • 29,862
  • 2
  • 22
  • 39