Created
April 18, 2018 12:49
-
-
Save guaxinim/6fd62b1ff9029327b5a0180a850a8998 to your computer and use it in GitHub Desktop.
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
for i in $(oc get projects | grep Terminating| awk '{print $1}'); do echo $i; oc get serviceinstance -n $i -o yaml | sed "/kubernetes-incubator/d"| oc apply -f - ; done | |
for i in $(oc get projects | grep Terminating| awk '{print $1}'); do echo $i; oc get servicebinding -n $i -o yaml | sed "/kubernetes-incubator/d"| oc apply -f - ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment