How do I configure Okteto with Okta?

Is it possible to use Okta as the authentication provider for Okteto Self-Hosted?

You can use Okta as your authentication provider via our OpenID configuration.

You need to create an OpenID app in Okta, 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://${TENANT}.okta.com
      authorization: https://${TENANT}.okta.com/oauth2/v1/authorize

Our full documentation on configuring Okta and Okteto is available here.