Set Custom Logo Enterprise¶
TestGen Enterprise supports replacing the DataKitchen logo and icon on the navigation menu with your custom company logo. Both images must be hosted at a publicly accessible URL.
How to set a custom logo¶
The logo is set through two environment variables, applied the same way as any other. See Set Environment Variables for the steps for your install mode.
| Variable | Value |
|---|---|
LOGO_URL |
URL to your logo image hosted online |
LOGO_ICON_URL |
URL to your logo icon image hosted online |
For a Docker installation, add them under the x-common-variables section of docker-compose.yml.
x-common-variables: &common-variables
LOGO_URL: <url to your logo image hosted online>
LOGO_ICON_URL: <url to your logo icon image hosted online>
For a Kubernetes installation, add them under extraEnv in values-tg-app.yaml.
extraEnv:
- name: LOGO_URL
value: <url to your logo image hosted online>
- name: LOGO_ICON_URL
value: <url to your logo icon image hosted online>
Restart the application for the change to take effect.