75 lines
2.2 KiB
YAML
75 lines
2.2 KiB
YAML
|
|
image:
|
|
repository: registry.dev.k8s.transcity/reports/superset
|
|
pullPolicy: Always
|
|
|
|
|
|
ingress:
|
|
enabled: true
|
|
ingressClassName: ~
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: admin
|
|
cert-manager.io/common-name: superset.alpha.k8s.transcity
|
|
cert-manager.io/private-key-algorithm: ECDSA
|
|
forecastle.stakater.com/appName: Superset
|
|
forecastle.stakater.com/expose: 'true'
|
|
forecastle.stakater.com/group: Reports
|
|
forecastle.stakater.com/instance: admin
|
|
path: /
|
|
pathType: Prefix
|
|
hosts:
|
|
- superset.alpha.k8s.transcity
|
|
tls:
|
|
- hosts:
|
|
- superset.alpha.k8s.transcity
|
|
secretName: superset-tls
|
|
extraHostsRaw: []
|
|
|
|
extraSecretEnv:
|
|
SUPERSET_SECRET_KEY: "S737pQg5i1sIMx+rGm5i2N1WuP4ZP3fuQkcZ9lN8U8DJphVLkiFao5Uh"
|
|
|
|
redis:
|
|
enabled: false
|
|
postgresql:
|
|
enabled: false
|
|
|
|
supersetNode:
|
|
connections:
|
|
# -- Change in case of bringing your own redis and then also set redis.enabled:false
|
|
redis_host: "valkey"
|
|
redis_port: "6379"
|
|
redis_user: ""
|
|
# redis_password: superset
|
|
redis_cache_db: "1"
|
|
redis_celery_db: "0"
|
|
# Or SSL port is usually 6380
|
|
# Update following for using Redis with SSL
|
|
redis_ssl:
|
|
enabled: false
|
|
ssl_cert_reqs: CERT_NONE
|
|
# You need to change below configuration incase bringing own PostgresSQL instance and also set postgresql.enabled:false
|
|
# -- Database type for Superset metadata (Supported types: "postgresql", "mysql")
|
|
db_type: "postgresql"
|
|
db_host: "superset-server"
|
|
db_port: "5432"
|
|
db_user: superset-user
|
|
db_pass: superset-pass
|
|
db_name: superset-db
|
|
|
|
supersetCeleryBeat:
|
|
# -- This is only required if you intend to use alerts and reports
|
|
enabled: true
|
|
|
|
supersetCeleryFlower:
|
|
# -- Enables a Celery flower deployment (management UI to monitor celery jobs)
|
|
# WARNING: on superset 1.x, this requires a Superset image that has `flower<1.0.0` installed (which is NOT the case of the default images)
|
|
# flower>=1.0.0 requires Celery 5+ which Superset 1.5 does not support
|
|
enabled: false
|
|
replicaCount: 1
|
|
|
|
supersetWebsockets:
|
|
# -- This is only required if you intend to use `GLOBAL_ASYNC_QUERIES` in `ws` mode
|
|
# see https://superset.apache.org/docs/contributing/misc#async-chart-queries
|
|
enabled: false
|
|
replicaCount: 1
|