cloudnoob
cloudnoob

Reputation: 85

Openshift - multiple auth providers

Does openshift (Origin or Enterprise) support multiple auth providers ? eg 1. htpasswd (if not found ) 2. ldap This link talks about various auth supported but can we use multiple

    ...
oauthConfig:
  identityProviders:
  - name: htpasswd_auth
    challenge: true
    login: false
    mappingMethod: "claim"
...
  - name: "my_ldap_provider" 
    challenge: true 
    login: true 
    mappingMethod: claim 
    provider:
...

Upvotes: 1

Views: 1057

Answers (1)

David Eads
David Eads

Reputation: 349

Yes, you can specify multiple auth providers. Just make sure they have different names. You'll also want to be careful cases where their preferred usernames will collide. claim (like you have it) is a pretty safe default. See https://docs.openshift.com/enterprise/3.2/install_config/configuring_authentication.html#mapping-identities-to-users if you want to read up on alternatives.

Upvotes: 1

Related Questions