Andreas Vöst
2 years
Moritz Kraus
2 years
Emma Heinle
2 years
Emma Heinle
3 years
Claus-Theodor Riegg
4 years
Claus-Theodor Riegg
4 years
Andreas Vöst
4 years
Claus-Theodor Riegg
9 years
Claus-Theodor Riegg
8 years

HowTo: Get kubernetes secrets in plaintext

Updated . Posted . Visible to the public.

Here's a one-liner to view base64 encoded secrets in kubernetes. Make sure you have jq installed.

$ kubectl get -n $NAMESPACE secret/$SECRET_NAME -o json| jq '.data | map_values(@base64d)'
{
  "database": "secret1",
  "endpoint": "secret2",
  "username": "secret3",
  "password": "secret4"
}
Emma Heinle
Last edit
Emma Heinle
Tags
License
Source code in this card is licensed under the MIT License.