-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
New issue
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
Add an environment variable for velocity secret #6332
Comments
ideally, we would have a full spring like value system, where every config entry can be overridden with a system property or an environment variable, rather than implementing ven vars manually |
Perhaps moving to pico cli for all config options could help there, alternatively e.g. |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Store sensitive information like forwarding secret inside a enviroment variable is a bad ideia, the correct thing is to use a file with the right permissions, like docker secret. |
This issue was moved to a discussion.
You can continue the conversation there. Go to discussion →
Is your feature request related to a problem?
When deploying Minecraft servers at scale, you would want to automate as much as you can. What I would like to achieve is an immutable Docker image to deploy my Minecraft server. I would like to store Bukkit, Spigot, Paper, etc config inside the Docker image. However, it is not a good idea to store sensitive information like forwarding secret inside a Docker image.
Describe the solution you'd like.
What would be ideal is to have an environment variable that can be defined at runtime, e.g.
VELOCITY_FORWARDING_SECRET
. This makes it easy to set in an environment like Kubernetes or Docker.Describe alternatives you've considered.
I have considered templating paper.yml as a ConfigMap with a templating tool like Helm, but this creates an enormous ConfigMap.
Agreements
Other
No response
The text was updated successfully, but these errors were encountered: