Secrets Passed Through env or envFrom
Kubernetes Pod and Deployment manifests use the env or envFrom fields to inject secrets directly into container environment variables. When developers use env with secretKeyRef or envFrom with secretRef, the secret values become accessible to any process within the container via /proc/*/environ, visible in kubectl describe pod output, exposed through container runtime APIs (docker inspect, crictl inspect), and inherited by all child processes spawned within the container, creating widespread secret exposure.