Last active
April 6, 2018 16:25
-
-
Save rthallisey/303cdec794c029a1c1c632c27f30a532 to your computer and use it in GitHub Desktop.
Developer upgrade from openshift-ansible 3.9 broker to lastest broker with CRDs
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
| # Developer upgrade from openshift-ansible 3.9 broker to lastest broker with CRDs | |
| oc project openshift-ansible-service-broker | |
| oc create ns ansible-service-broker | |
| curl -s https://raw.githubusercontent.com/openshift/ansible-service-broker/release-1.1/templates/deploy-ansible-service-broker.template.yaml | oc process -f - | oc delete -f - | |
| oc project ansible-service-broker | |
| echo "Allowing services to terminate..." | |
| sleep 20 | |
| curl -s https://raw.githubusercontent.com/openshift/ansible-service-broker/master/scripts/run_latest_build.sh | bash - | |
| oc adm policy add-cluster-role-to-user cluster-admin developer | |
| oc login -u developer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment