Replies: 4 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 |
Beta Was this translation helpful? Give feedback.
-
Perhaps moving to pico cli for all config options could help there, alternatively e.g. |
Beta Was this translation helpful? Give feedback.
-
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. |
Beta Was this translation helpful? Give feedback.
-
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. |
Beta Was this translation helpful? Give feedback.
-
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
Beta Was this translation helpful? Give feedback.
All reactions