|
|
|
|
|
by solatic
1 day ago
|
|
> many people who’d consider a VPS would happily slap a .env with an unencrypted secret then ssh to update I just want to point out that you can totally still do this with Kubernetes. Of course it's not correct, but you can save that unencrypted secret in a .env file right into your container while you're building it - no need to use Kubernetes's support for supplying environment variables from the manifest. And of course, you don't even need a Dockerfile to build that container - you can just exec into a running container, paste it in, and then docker save. Kubernetes doesn't save you from making stupid decisions, it just makes it easier to make better ones. |
|