Skip to content

Instantly share code, notes, and snippets.

@ryanj
Last active August 29, 2015 14:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryanj/62b75dbccdafcbda2570 to your computer and use it in GitHub Desktop.
Save ryanj/62b75dbccdafcbda2570 to your computer and use it in GitHub Desktop.
Multi-user Origin

Add multiple users to OpenShift Origin

Step1: Add the user

Use oo-admin-ctl-user to add a new user:

sudo oo-admin-ctl-user -c --login email_address@gmail.com --allowprivatesslcertificates true --allowha true --allowplanupgrade true --allowviewglobalteams true --allowsubaccounts true

Step2: Set a password

Use htpasswd to update the broker's user list (/etc/openshift/htpasswd):

sudo htpasswd /etc/openshift/htpasswd email_address@gmail.com

The new user should now be able to log in using basic HTTP auth.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment