I use the SmallRye Health extension in Quarkus.
The /q/health-ui
is acutally only enabled in devmode.
How can i enable it in the runtime?
%runtime.quarkus.smallrye.health.ui.enable=true
Does not work. Thanks for your help.
You made a small mistake on the profile name, it's not runtime but prod as default non test/dev profile.
Usage is similar to what you've already done :
%prod.quarkus.smallrye-health.ui.enable=true
I saw it a bit late, but you also miss typed the param name, there is a -
between smallrye and health, not a dot as you typed in your question
Now: quarkus.smallrye-health.ui.always-include=true worked