I am running Kubernetes on \"Docker Desktop\" in Windows.
I have a LoadBalancer Service for a deployment which has 3 replicas. I would like to access SPECIFIC pod th
You can use StatefulSets if you are not required to use deployment.
For replica 3, you will have 3 pods named
You can access each pod as $(podname).$(service name).$(namespace).svc.cluster.local
For details, check this
You may also want to set up an ingress to point each pod from outside of the cluster.