On Kubernetes
Getting Started
Use the following command to add the Superset Helm repository to your Helm client:
Create a namespace
Generate SECRET_KEY
```yaml titles="superset_values.yaml"
Define the namespace where Superset will be installed
namespace: superset
Database configuration
postgresql: postgresqlUsername: supersetpostgres postgresqlPassword: SuperPGadmin@2024 postgresqlDatabase: superset
configOverrides:
secret: |
SECRET_KEY = '
bootstrapScript: | #!/bin/bash pip install psycopg2 \ pip install pyhive && \ if [ ! -f ~/bootstrap ]; then echo "Running Superset with uid {{ .Values.runAsUser }}" > ~/bootstrap; fi ```