Generic OAuth Authentication
Velero UI supports authentication via a custom OAuth provider. This section explains how to configure and enable OAuth authentication using environment variables.
Environment Variablesβ
Variable | Description |
---|---|
OAUTH_AUTH_ENABLED | Set to true to enable OAuth authentication. Default is false . |
OAUTH_NAME | The display name of the OAuth provider. |
OAUTH_AUTHORIZATION_URL | The authorization endpoint URL for OAuth authentication. |
OAUTH_USER_INFO_URL | The user information endpoint to fetch authenticated user details. |
OAUTH_TOKEN_URL | The token endpoint URL to exchange authorization codes for access tokens. |
OAUTH_CLIENT_ID | The client ID provided by your OAuth provider. |
OAUTH_CLIENT_SECRET | The client secret provided by your OAuth provider. |
OAUTH_OAUTH_SCOPE | The scope of OAuth access. Default: openid profile email . |
OAUTH_REDIRECT_URI | The redirect URI after authentication. Default: http://localhost:4200/login . |
Steps to Configure Generic OAuth Authenticationβ
-
Register an Application with Your OAuth Provider
- Navigate to your OAuth providerβs developer portal.
- Register a new application.
- Set the Redirect URI to
http://localhost:4200/login
(or your production URL). - Copy the Client ID and Client Secret.
-
Obtain OAuth Endpoints
- Locate the authorization, token, and user info URLs from your OAuth providerβs documentation.
-
Set Environment Variables
- Update your environment variables with the values from your OAuth provider.
- Example:
OAUTH_AUTH_ENABLED=true
OAUTH_NAME="Your OAuth Provider"
OAUTH_AUTHORIZATION_URL="https://your-provider.com/oauth/authorize"
OAUTH_USER_INFO_URL="https://your-provider.com/oauth/userinfo"
OAUTH_TOKEN_URL="https://your-provider.com/oauth/token"
OAUTH_CLIENT_ID=your-client-id
OAUTH_CLIENT_SECRET=your-client-secret
OAUTH_OAUTH_SCOPE="openid profile email"
OAUTH_REDIRECT_URI=http://localhost:4200/login
-
Restart Your Application
- Restart the Velero UI to apply the changes.
Troubleshootingβ
- Ensure that the redirect URI set in the OAuth provider matches
OAUTH_REDIRECT_URI
. - Check if
OAUTH_AUTH_ENABLED
is set totrue
. - Inspect logs for authentication errors.
- Verify that your OAuth credentials and URLs are correct.
Conclusionβ
Once configured, users will be able to sign in to Velero UI using the specified OAuth provider for authentication.