How do I configure Okteto with Azure Active Directory?

Is it possible to use Azure Active Directory as the authentication provider for Okteto Self-Hosted?

You can use Azure Active Directory as your authentication provider via our OpenID configuration.

You need to create an OpenID app in Azure Active Directory, get the secrets and the authorization endpoints, and set the auth section of your Helm configuration file as follows:

auth:
  openid:
    enabled: true
    clientId: $CLIENT_ID
    clientSecret: $CLIENT_SECRET
    endpoints:
      issuer: https://sts.windows.net/$TENANT_ID/
      authorization: https://login.microsoftonline.com/$TENANT_ID/oauth2/v2.0/authorize
    mapping:
      externalIDKey: email

Our complete documentation on configuring Azure Active Directory and Okteto is available here .