Superset
Overview
Managing application via Apolo CLI
apolo app-template get superset > superset.yaml# Application template configuration for: superset
# Fill in the values below to configure your application.
# To use values from another app, use the following format:
# my_param:
# type: "app-instance-ref"
# instance_id: "<app-instance-id>"
# path: "<path-from-get-values-response>"
template_name: superset
template_version: v25.7.0
input:
# Enable access to your application over the internet using HTTPS.
ingress_http:
# Require authenticated user credentials with appropriate permissions for all incoming HTTPS requests to the application.
auth: true
# Set the configuration for Superset worker.
worker_config:
# Select the resource preset used per service replica.
preset:
# The name of the preset.
name: ''
# Set the configuration for Superset Web UI.
web_config:
# Select the resource preset used per service replica.
preset:
# The name of the preset.
name: ''
# Set your own postgres as a database for Superset app. If it was not provided, postgres instance will be created within the same app.
postgres_config:
user: ''
password: ''
host: ''
port: 8080
pgbouncer_host: ''
pgbouncer_port: 0
dbname:
jdbc_uri:
pgbouncer_jdbc_uri:
pgbouncer_uri:
uri:
# Configuration for the Postgres connection URI.
postgres_uri:
# Set the admin user fields to be
admin_user:
# Set Admin Username.
username: admin
# Set Admin first name.
firstname: Superset
# Set Admin last name.
lastname: Admin
# Set Admin email.
email: [email protected]
# Set Admin password.
password: adminUsage

References:
Last updated
Was this helpful?