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
#!/usr/bin/env bash | |
set -o errexit | |
set -o nounset | |
set -o pipefail | |
# not sure this is still necessary, but can't hurt... | |
# kick the console pods because they cache oauth metadata (temporary, should not be required) | |
oc delete pods -n openshift-console --all --force --grace-period=0 |