Useful commands
Read database passwords
kubectl get secret database-user-credentials -o go-template='{{ .data.campaign | base64decode }}'helm get values akamas --all --output json | jq '.campaign.database.user'kubectl get secret database-user-credentials -o go-template='{{range $k,$v := .data}} {{printf "%s: %s\n" $k ( $v |base64decode ) }}{{end}}'Last updated
Was this helpful?