Openshift - multiple auth providers -
does openshift (origin or enterprise) support multiple auth providers ? eg 1. htpasswd (if not found ) 2. ldap this link talks various auth supported can use multiple
... oauthconfig: identityproviders: - name: htpasswd_auth challenge: true login: false mappingmethod: "claim" ... - name: "my_ldap_provider" challenge: true login: true mappingmethod: claim provider: ...
yes, can specify multiple auth providers. make sure have different names. you'll want careful cases preferred usernames collide. claim
(like have it) pretty safe default. see https://docs.openshift.com/enterprise/3.2/install_config/configuring_authentication.html#mapping-identities-to-users if want read on alternatives.
Comments
Post a Comment