Skip to content

Instantly share code, notes, and snippets.

@filintod
Last active October 4, 2019 18:29
Show Gist options
  • Save filintod/fb6578152d853a8d3ceed9029e2bd356 to your computer and use it in GitHub Desktop.
Save filintod/fb6578152d853a8d3ceed9029e2bd356 to your computer and use it in GitHub Desktop.
Get kubernetes files from secret
#!/bin/bash
# secret name is the first
# namespace is optional second
# there is not much validation
secret_name="${1}"
ns=""
[[ $2 ]] && ns="-n ${2}"
secret_files=($(kubectl get secret ${secret_name} ${ns}\
-o go-template='{{ range $name, $_ := .data }}{{ print $name " " }}{{ end }}'))
for secret in ${secret_files[@]}; do
echo "Secret: $secret"
secretDot=$(echo $secret | sed -r 's/\./\\./g')
kubectl get secret ${secret_name} ${ns}\
-o jsonpath="{.data.${secretDot}}" | base64 -d > ${secret}
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment