-
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 1 reply
-
/cc @pedroigor (oidc), @sberyozkin (oidc) |
Beta Was this translation helpful? Give feedback.
-
@NMichas As Far as I understand, due to the slash in the CC-ing Roberto, @radcortez as well |
Beta Was this translation helpful? Give feedback.
-
Thanks @sberyozkin, you mean to define this property in application properties? I tried adding it to my application.yaml as: And then make sure the env variables are indeed passed (it runs in Kubernetes): Now I get: So, I guess Quarkus is using the dummy values I provided in application.yaml and the environment variables are still ignored. |
Beta Was this translation helpful? Give feedback.
-
The environment variable in this case is incorrect; remove the double Apart from a few specific circumstances, env vars cannot establish configuration, they can only override configuration. |
Beta Was this translation helpful? Give feedback.
-
Indeed, that worked, thanks a lot! |
Beta Was this translation helpful? Give feedback.
The environment variable in this case is incorrect; remove the double
__
and replace it with a single_
and it should work.Apart from a few specific circumstances, env vars cannot establish configuration, they can only override configuration.