π Environment Variables
Overviewβ
Velero UI provides a range of environment variables that allow you to customize and configure various aspects of the application. This page serves as a comprehensive reference for all available environment variables, including their types, default values, and descriptions.
App/Backendβ
The following environment variables are used by apps/velero-ui-api
to provide Velero UI startup
configuration.
API (backend)β
NODE_ENV
β
- Type:
string
(enum:development
,production
) - Default:
- App Default:
development
- Docker Default:
production
- App Default:
- Description: Specifies the environment in which the application is running. Use
development
for local development andproduction
for live deployments.
LOG_LEVEL
β
- Type:
string
(enum:debug
,info
,error
) - Default:
info
- Description: Sets the log level for the backend API, allowing you to control the verbosity of logs. Options include
debug
,info
, anderror
.
PORT
β
- Type:
number
- Default:
3000
- Description: Defines the port on which the API will be exposed. You can change this to avoid conflicts with other services.
VELERO_NAMESPACE
β
- Type:
string
- Default:
velero
- Description: Specifies the Kubernetes namespace in which Velero is deployed. This is important for managing backups and restores.
AUTH_SECRET_PASSPHRASE
β
- Type:
string
- Default:
this is not a secret passphrase
- Description: A secret passphrase used for signing and verifying JWT tokens. Ensure this is kept secure to prevent unauthorized access.
AUTH_SESSION_DURATION
β
- Type:
string
- Default:
1h
- Description: Indicates the duration of a user session, used for generating JWT tokens. Adjust this value to control session length.
KUBE_CONFIG_PATH
β
- Type:
string
- Default:
- Development Default:
-
- Docker Default:
-
- Kubernetes Default: Provided by Cluster Role Binding
- Development Default:
- Description: Specifies the path to the Kubernetes configuration file. This file is needed to connect to the Kubernetes cluster.
VELERO_UI_NAMESPACE
β
- Type:
string
- Default:
velero-ui
- Description: Specify the namespace where the Velero UI is running.
KUBE_CONTEXT
β
- Type:
string
- Default:
- Development Default: Uses the default context from Kube Config.
- Docker Default: Uses the default context from Kube Config.
- Kubernetes Default: Provided by Cluster Role Binding
- Description: Defines the context to use from the Kube Config for cluster interactions. Ensure the correct context is set for the desired cluster.
APP (frontend)β
GRAFANA_URL
β
- Type:
string
- Description: URL link to your Grafana Dashboard for monitoring and visualization purposes.
VITE_PORT
(development only)β
- Type:
number
- Default:
4200
- Description: The port on which the frontend application is exposed during development. This can be adjusted if needed.
VITE_API_URL
(development only)β
- Type:
string
- Default:
http://localhost:${PORT}
- Description: The base URL for the API that the frontend application will interact with during development.
Authenticationβ
BASIC_AUTH_ENABLED
β
- Type:
bool
- Default:
true
- Description: Enables basic authentication for the application. If set to
false
, the login form will be hidden.
BASIC_AUTH_USERNAME
β
- Type:
string
- Default:
admin
- Description: Specifies the username for basic authentication. Change this as needed for security.
BASIC_AUTH_PASSWORD
β
- Type:
string
- Default:
admin
- Description: Specifies the password for basic authentication. Ensure this is secure and not easily guessable.
Federated Authenticationβ
GOOGLE_AUTH_ENABLED
β
- Type:
bool
- Default:
false
- Description: Enables Google authentication for users. When enabled, users can log in using their Google accounts.
GOOGLE_CLIENT_ID
β
- Type:
string
- Description: Sets the client ID for Google OAuth authentication, required for user verification.
GOOGLE_CLIENT_SECRET
β
- Type:
string
- Description: Sets the client secret for Google OAuth authentication, essential for securing the authentication process.
GOOGLE_OAUTH_SCOPE
β
- Type:
string
- Default:
openid email profile
- Description: Defines the scopes for Google OAuth authentication, specifying the permissions requested from the user.
GOOGLE_REDIRECT_URI
β
- Type:
string
- Default:
${BASE_URL}/login
- Description: The URI to which Google redirects users after authentication. This should be configured to match your application's routes.