Is your feature request related to a problem? Please describe.
I want to use Spring Cloud Kubernetes Configuration Watcher to monitor and call /refresh for shared ConfigMaps and Secrets maintained by centralised platform team in my project.
The problem is that I do not have permissions to add necessary labels:
spring.cloud.kubernetes.secret / spring.cloud.kubernetes.secret.informer.enabled
spring.cloud.kubernetes.config / spring.cloud.kubernetes.config.informer.enabled
and annotations
spring.cloud.kubernetes.secret.apps / spring.cloud.kubernetes.configmap.apps
in order for Watcher to fire the /refresh calls to the apps.
Note! I do have permissions for getting, listing and watching these ConfigMaps and Secrets, but not editing them.
Documentation I have used so far:
Describe the solution you'd like
What would really help is that it was possible (as an alternative solution) to explicitly configure the name of ConfigMaps and Secrets in the Watcher deployment, as environment variables, in addition to which apps to refresh. Or, if you have any suggestion on an alternative solution, not requiring changes to the ConfigMap and Secret resources.
Is your feature request related to a problem? Please describe.
I want to use Spring Cloud Kubernetes Configuration Watcher to monitor and call
/refreshfor shared ConfigMaps and Secrets maintained by centralised platform team in my project.The problem is that I do not have permissions to add necessary
labels:spring.cloud.kubernetes.secret/spring.cloud.kubernetes.secret.informer.enabledspring.cloud.kubernetes.config/spring.cloud.kubernetes.config.informer.enabledand
annotationsspring.cloud.kubernetes.secret.apps/spring.cloud.kubernetes.configmap.appsin order for Watcher to fire the
/refreshcalls to the apps.Note! I do have permissions for getting, listing and watching these ConfigMaps and Secrets, but not editing them.
Documentation I have used so far:
Describe the solution you'd like
What would really help is that it was possible (as an alternative solution) to explicitly configure the name of ConfigMaps and Secrets in the Watcher deployment, as environment variables, in addition to which apps to refresh. Or, if you have any suggestion on an alternative solution, not requiring changes to the ConfigMap and Secret resources.