Kubernetes Secrets Are NOT Encrypted — Here's the Proof
The Uncomfortable Truth
Run this command against any Kubernetes Secret in your cluster:
kubectl get secret my-database-secret -o jsonpath='{.data.password}' | base64 -d
That's it. One command. Your production database password is now in plaintext on...
rexsec.hashnode.dev14 min read