I have a kubernetes cluster which have a config server pod (spring cloud config) and my app running in 3 different pod for HA, exposed by service-ip. when i change properties in git and commit+push, i have to call http://service-ip/actuator/refresh. The problem is that when i call this url, only 1 pod get updated ( the pod that process the current request).
is there any way to solve it ? i see some options to find the pods using kubectl (answer from 2013), but im looking for more native solution.