marinflorin commented on issue #34185: URL: https://github.com/apache/superset/issues/34185#issuecomment-3219533362
Please follow the documentation, e.g. https://superset.apache.org/docs/installation/kubernetes/#dependencies Superset requires a Python DB-API database driver and a SQLAlchemy dialect to be installed for each datastore you want to connect to. See [Install Database Drivers](https://superset.apache.org/docs/configuration/databases) for more information. It is recommended that you refer to versions listed in [pyproject.toml](https://github.com/apache/superset/blob/master/pyproject.toml) instead of hard-coding them in your bootstrap script, as seen below. E.g. for Helm Chart: ``` bootstrapScript: | #!/bin/bash uv pip install .[postgres] \ .[bigquery] \ .[elasticsearch] &&\ if [ ! -f ~/bootstrap ]; then echo "Running Superset with uid {{ .Values.runAsUser }}" > ~/bootstrap; fi ``` Also note that for production is recommended to build your own images with the required drivers and dependencies: https://superset.apache.org/docs/configuration/databases/ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
