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
| { | |
| "USERNAME": "foo-user", | |
| "PASSWORD": "somepassword123" | |
| } |
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
| #!/usr/bin/env bash | |
| # Prerequsites: | |
| # - have kubectl installed | |
| # - be logged in via kubectl | |
| # - have enough permissions to access kubeadm-config Config Map | |
| # - have jq installed (https://stedolan.github.io/jq/) | |
| # - have yq installed (https://mikefarah.gitbook.io/yq/) | |
| kubectl get configmap kubeadm-config -n kube-system -o json | \ |
OlderNewer