Secrets in Kubernetes are encoded using base64.

If you have the secret name, you can ask for its value. If not, then learn how to get a secret in Kubernetes.

How to retrieve the value of a secret in Kubernetes

1
kubectl get secret admin-user-pass -o jsonpath='{.data}'

This will output a JSON as follows:

1
{"password":"amYzOTJoZjc4MmhmOTMyaAo=","username":"YWRtaW51c2VyCg=="}

How to decode the value of a secret in Kubernetes

Values are always base64 encoded, so decoding it will look like this:

1
echo 'amYzOTJoZjc4MmhmOTMyaAo=' | base64 --decode

This prints the decoded value of our original secret we stored before.

1
jf392hf782hf932h