OIDC

You configure OIDC (OpenID Connect) for MKE 4 through the authentication.oidc section of the MKE configuration file.

OIDC example configuration:

authentication:
  enabled: true
  oidc:
    enabled: true
    issuer: https://dev-94406016.okta.com
    clientID: 0oedtjcjrjWab3zlD5d4
    clientSecret: DFA9NYLfE1QxwCSFkZunssh2HCx16kDl41k9tIBtFZaNcqyEGle8yZPtMBesyomD
    redirectURI: http://dex.example.com/dex/callback

Configure OIDC service for MKE

In the MKE configuration file authentication.oidc section, enable your OIDC service by setting enabled to true. Use the remaining fields, which are defined in the following table, to configure your chosen OIDC provider.

ℹ️
For information on how to obtain the field values, refer to Setting up Okta as an OIDC provider.
FieldDescription
issuerOIDC provider root URL.
clientIDID from the IdP application configuration.
clientSecretSecret from the IdP application configuration.
redirectURIURI to which the provider will return successful authentications to.

For more information, refer to the official DEX documentation OIDC configuration.