From the course: Kubernetes Network and Cluster Hardening by Pearson
Unlock this course with a free trial
Join today to access over 25,200 courses taught by industry experts.
Testing Ingress access - Kubernetes Tutorial
From the course: Kubernetes Network and Cluster Hardening by Pearson
Testing Ingress access
This lesson, we're going to spend a little bit of time going through some of the troubleshooting and debugging techniques you can use if you have some issues with Ingress, specifically around TLS encryption. First thing we want to do whenever we're looking at Ingress is we want to make sure that the pods are up and running. So here's an example of being able to look into the Ingress namespace and be able to see that, yes, our controller is up and running. Everything is working as it should. Now, once we've identified that, we can then get the name of that pod itself. So you'll notice there at the very end, that particular pod is what we're going to get some details on. And we're going to look at the logs on it. So here are the actual logs of all the connections that have come inbound into this session. So you'll notice that each time we use the curl command, it provided a connection. And we can see the details associated with it. So it's very helpful when it comes to identifying if…