Last active
October 4, 2019 18:29
-
-
Save filintod/fb6578152d853a8d3ceed9029e2bd356 to your computer and use it in GitHub Desktop.
Get kubernetes files from secret
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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