Created
January 29, 2022 19:53
-
-
Save sergsoares/80baf852fc638d947ed8e214e99fac0d to your computer and use it in GitHub Desktop.
Script to get all configmaps values being used in a Namespace
This file contains hidden or 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
kubectl get configmap -o json -n namespace | jq '.items[] | [.metadata.namespace, .metadata.name, .data ]' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment