1 Answers
The IP address 35.228.74.4 is not part of Kubernetes cluster; it is the IP address of the Cloud Provider Load Balancer. A service of type LoadBalancer also creates a corresponding NodePort. So port 8080 on the provider’s Load Balancer will map to port 30203 on each node to reach the service. You can also access the service using Node’s IP address on port 30203, but if you want to go through the load balancer, you have to use port 8080. For the most part, you would want to use cloud provider load balancer because the node IP addresses may not be public or not reachable from the outside. I hope this helps.