GitHub user dosubot[bot] added a comment to the discussion: Production
deployment issue in
<!-- Answer -->
To update the custom logo and application name in Superset on AKS, set these
variables in your superset_config.py (which you can inject via Helm’s
configOverrides):
```python
APP_NAME = "Your App Name"
APP_ICON = "/static/assets/images/your-logo.png" # Path to your logo in the
container
LOGO_RIGHT_TEXT = "Your Brand Text" # (optional, shows text next to the logo)
```
Reference your logo file by path. For production, the recommended way is to
build a custom Docker image that copies your logo into
`/app/superset/static/assets/images/your-logo.png` (or whichever path you set
in APP_ICON). Example Dockerfile snippet:
```dockerfile
FROM apache/superset:4.1.2
COPY your-logo.png /app/superset/static/assets/images/your-logo.png
```
Then, in your Helm values.yaml:
```yaml
configOverrides:
superset_config.py: |
APP_NAME = "Your App Name"
APP_ICON = "/static/assets/images/your-logo.png"
LOGO_RIGHT_TEXT = "Your Brand Text"
```
You can also set LOGO_TARGET_PATH (URL to navigate when clicking the logo) and
LOGO_TOOLTIP (hover text) if needed. All these settings are supported in recent
Superset versions and can be injected via configOverrides in Helm deployments
on AKS.
[See config.py for
details](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset/config.py)
[Recent LOGO_RIGHT_TEXT feature](https://github.com/apache/superset/pull/34318)
If you want to change colors or typography, use the THEME variable in
superset_config.py, but this does not affect the logo image itself.
<!-- Dosu Comment Footer -->
*To reply, just mention [@dosu](https://go.dosu.dev/dosubot).*
---
<sup>How did I do?
[Good](https://app.dosu.dev/response-feedback/5080d5c3-5d67-4dac-80eb-dc8440358a82?feedback_type=great_response)
|
[Irrelevant](https://app.dosu.dev/response-feedback/5080d5c3-5d67-4dac-80eb-dc8440358a82?feedback_type=irrelevant_answer)
|
[Incorrect](https://app.dosu.dev/response-feedback/5080d5c3-5d67-4dac-80eb-dc8440358a82?feedback_type=incorrect_sources)
|
[Verbose](https://app.dosu.dev/response-feedback/5080d5c3-5d67-4dac-80eb-dc8440358a82?feedback_type=too_verbose)
|
[Hallucination](https://app.dosu.dev/response-feedback/5080d5c3-5d67-4dac-80eb-dc8440358a82?feedback_type=hallucination)
| [Report
🐛](https://app.dosu.dev/response-feedback/5080d5c3-5d67-4dac-80eb-dc8440358a82?feedback_type=bug_report)
|
[Other](https://app.dosu.dev/response-feedback/5080d5c3-5d67-4dac-80eb-dc8440358a82?feedback_type=other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=github)&
nbsp;[](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/discussions/33957)
GitHub link:
https://github.com/apache/superset/discussions/33957#discussioncomment-14020323
----
This is an automatically sent email for [email protected].
To unsubscribe, please send an email to:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]