I would like kubernetes when i'm sending a request to a Service which response is 204 would be send to all the pods in the ReplicaSet and not only one.
For example GET to http://srvaxivln090:30000/hotel/start This will start a service to start consume messages from a jms-queue.
I have a 3 ReplicaSet and when sending the request only one POD starts to consume the messages from the queue (the one taht receives the request)
How can i configure kubernetes that for certain requests/rules the request will be send to all the pods ?
Thank you