Last active
December 20, 2018 12:30
-
-
Save odra/73e4a9fa530d16469ea24f0d70622998 to your computer and use it in GitHub Desktop.
integreatly release-1.0.3 hacks
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
#patch the correct launcher frontend image after the first installation | |
oc patch -n launcher deploymentconfig launcher-frontend --patch '{"spec":{"template":{"spec":{"containers":[{"name":"launcher-frontend","image":"fabric8/launcher-frontend:a00064f"}]}}}}' | |
#changing usernames requires both email and usernames to use e-mail formatted string | |
ansible-playbook \ | |
-i inventories/hosts \ | |
playbooks/install.yml \ | |
-e rhsso_seed_users_name_format=user%[email protected] \ | |
-e rhsso_seed_users_email_format=user%[email protected] \ | |
-e rhsso_seed_users_password=openshift | |
#get sso secure route, access it in your browser and accept the self signed cert otherwise che wss won't work | |
echo https://$(oc get routes/secure-launcher-sso -n launcher -o jsonpath='{.spec.host}') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment