How to install 5.0 version using helm? #34314
Replies: 1 comment
-
There is a Helm chart for Superset 5.0, but the official Helm registry (https://apache.github.io/superset/) is no longer serving chart artifacts and now redirects to the main Superset website, so you can't install it directly from a public registry. Instead, you need to clone the Superset GitHub repository and use the chart from the helm/superset directory for a local Helm install. Example steps:
Superset 5.0 images are now "lean" and do not include database drivers like psycopg2-binary by default. Superset v5 also switched from pip to uv for Python package management, so if you need to install extra Python packages (like psycopg2-binary or authlib), update your bootstrapScript to use uv, for example: bootstrapScript: |
#!/bin/bash
apt update && apt install -y gcc libpq-dev python3-dev pkg-config
uv pip install psycopg2-binary authlib If you use the Bitnami Helm chart, note that it does not support bootstrapScript, so you should build a custom Docker image with the required dependencies instead. More details and discussion: To reply, just mention @dosu. How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I can't find the Helm package for Superset 5.0. How can I install it?
Beta Was this translation helpful? Give feedback.
All reactions