Why might I choose the get config to a pod using a config map, rather than setting env vars in helm
Can change config map on running pod
Why secrets in mount rather than env var
Env var could leak to sub processes or get in logs
Command that run when pod starts defined in dockerfile. Can I override the startup command when I run a pod running that image in k8s
Yes.
Dockerfile:
Entry point
Cod
K8s yaml
Command: [“”]
Args:[“”,””]