We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently, we configure the applications via env vars. We should move to application config like what we did in Helm (here is an example for Optimize)
Most, if not all, env vars follow the Sprint Boot convention, so SPRING_CONFIG_NAME=xyz represents the following YAML:
SPRING_CONFIG_NAME=xyz
spring: config: name: xyz
Just be careful of how entry point scripts may alter env vars, like Zeebe entry point altering ZEEBE_GATEWAY_NETWORK_HOST
ZEEBE_GATEWAY_NETWORK_HOST
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, we configure the applications via env vars.
We should move to application config like what we did in Helm (here is an example for Optimize)
Most, if not all, env vars follow the Sprint Boot convention, so
SPRING_CONFIG_NAME=xyz
represents the following YAML:Just be careful of how entry point scripts may alter env vars, like Zeebe entry point altering
ZEEBE_GATEWAY_NETWORK_HOST
The text was updated successfully, but these errors were encountered: