Spring Boot applications context needs to be refreshed after changing properties (in GIT repository) without a need of application redeployment.
Can I consider using zookeeper to fetch application properties stored externally (in a separate GIT repository, yaml file) and apply them to /actuator/refresh endpoint of the services deployed in Kubernetes?
Ive already seen plenty examples of Spring Cloud Config Server usage, but at least now I want to give a try of Zookeeper as its configured and used on our production for many purposes.
Maybe somebody tried to do such things and has a proper approach?