DEV Community

Discussion on: How to setup a Keycloak Gatekeeper to secure the services in your Kubernetes cluster

Collapse
 
brunobck profile image
Bruno

There is no typo, "my-service" is a k8s object that abstracts a set of pods. Port "32111" is where this k8s objects is receiving traffic. Every application which was calling the pod directly, now call the service on that port, and the service routes the traffic for one of its pods, like a load-balance. As you said, those are k8s specific matters, and I suggest you reading kubernetes.io/docs/concepts/servic...