Hot reload of mounted configMap #23133
-
I use external config for Quarkus app (mounted to $PWD/config/application.yml), application overrides configuration during runtime. Is there a feature for hot-reload of the external configuration file (to automatically update configuration on mounted ConfigMap change)? Or which is the best way to implement such case? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 4 replies
-
We don't support arbitrary reload of config changes. we do support updates of credentials using a credentials provider, see https://quarkus.io/guides/credentials-provider for updating other changes we suggest to use kubernetes to restart your process - kubernetes will take care of rerouting traffic to the new nodes. what kind of changes is it you want to hot reload? |
Beta Was this translation helpful? Give feedback.
-
In our project (parodos) we rely heavily on Quarkus when running serverless workflows. @maxandersen has anything changed in approaching this issue since this thread was initiated? or does the recommendation in it remain? |
Beta Was this translation helpful? Give feedback.
We don't support arbitrary reload of config changes.
we do support updates of credentials using a credentials provider, see https://quarkus.io/guides/credentials-provider
for updating other changes we suggest to use kubernetes to restart your process - kubernetes will take care of rerouting traffic to the new nodes.
what kind of changes is it you want to hot reload?