do not store secrets in configmaps#3
Conversation
|
Thanks for the PR 💐 Even tough I agree with the idea of "not storing sensitive information in the configmap", it doesn't feel right to move all configuration to a secret. If there is a way to separate configuration options like hosts, ports etc from sensitive information, we can go that way maybe? |
|
"One or more TOML files can be read by passing --config config.toml multiple times. " ( source: https://listmonk.app/docs/configuration/ ) |
Do you know if there is any configuration that is doable by the config file, but not the environment variables? If everything is configurable by environment variables, we can go that way, and move sensitive information to a secret. |
|
Secrets aren't that secret in k8s, but in doubt, it's better to have everything in a secret than having a secret in a configmap :) |
No description provided.