diff --git a/helm/superset/Chart.yaml b/helm/superset/Chart.yaml index 202480e475e80..09cb8ab7d2141 100644 --- a/helm/superset/Chart.yaml +++ b/helm/superset/Chart.yaml @@ -29,7 +29,7 @@ maintainers: - name: craig-rueda email: craig@craigrueda.com url: https://github.com/craig-rueda -version: 0.13.5 +version: 0.13.6 dependencies: - name: postgresql version: 12.1.6 diff --git a/helm/superset/README.md b/helm/superset/README.md index acd2519c98600..d8fd9fe2a9176 100644 --- a/helm/superset/README.md +++ b/helm/superset/README.md @@ -23,7 +23,7 @@ NOTE: This file is generated by helm-docs: https://github.com/norwoodj/helm-docs # superset -![Version: 0.13.5](https://img.shields.io/badge/Version-0.13.5-informational?style=flat-square) +![Version: 0.13.6](https://img.shields.io/badge/Version-0.13.6-informational?style=flat-square) Apache Superset is a modern, enterprise-ready business intelligence web application @@ -66,12 +66,12 @@ On helm this can be set on `extraSecretEnv.SUPERSET_SECRET_KEY` or `configOverri | envFromSecret | string | `"{{ template \"superset.fullname\" . }}-env"` | The name of the secret which we will use to populate env vars in deployed pods This can be useful for secret keys, etc. | | envFromSecrets | list | `[]` | This can be a list of templated strings | | extraConfigMountPath | string | `"/app/configs"` | | -| extraConfigs | object | `{}` | Extra files to mount on `/app/pythonpath` | +| extraConfigs | object | `{}` | Extra files to be mounted as ConfigMap on the path specified in `extraConfigMountPath` | | extraEnv | object | `{}` | Extra environment variables that will be passed into pods | | extraEnvRaw | list | `[]` | Extra environment variables in RAW format that will be passed into pods | | extraLabels | object | `{}` | Labels to be added to all resources | | extraSecretEnv | object | `{}` | Extra environment variables to pass as secrets | -| extraSecrets | object | `{}` | Extra files to mount on `/app/pythonpath` as secrets | +| extraSecrets | object | `{}` | Extra files to be mounted as Secrets on the path specified in `configMountPath` | | extraVolumeMounts | list | `[]` | | | extraVolumes | list | `[]` | | | fullnameOverride | string | `nil` | Provide a name to override the full names of resources | diff --git a/helm/superset/values.yaml b/helm/superset/values.yaml index eec82cf3488e5..eac2c75990c4f 100644 --- a/helm/superset/values.yaml +++ b/helm/superset/values.yaml @@ -106,7 +106,7 @@ extraSecretEnv: {} # # Generate your own secret key for encryption. Use openssl rand -base64 42 to generate a good key # SUPERSET_SECRET_KEY: 'CHANGE_ME_TO_A_COMPLEX_RANDOM_SECRET' -# -- Extra files to mount on `/app/pythonpath` +# -- Extra files to be mounted as ConfigMap on the path specified in `extraConfigMountPath` extraConfigs: {} # import_datasources.yaml: | # databases: @@ -120,7 +120,7 @@ extraConfigs: {} # sqlalchemy_uri: example://example-db.local # tables: [] -# -- Extra files to mount on `/app/pythonpath` as secrets +# -- Extra files to be mounted as Secrets on the path specified in `configMountPath` extraSecrets: {} extraVolumes: [] @@ -277,7 +277,7 @@ supersetNode: - ". {{ .Values.configMountPath }}/superset_bootstrap.sh; /usr/bin/run-server.sh" connections: # -- Change in case of bringing your own redis and then also set redis.enabled:false - redis_host: '{{ .Release.Name }}-redis-headless' + redis_host: "{{ .Release.Name }}-redis-headless" redis_port: "6379" redis_user: "" # redis_password: superset @@ -289,7 +289,7 @@ supersetNode: enabled: false ssl_cert_reqs: CERT_NONE # You need to change below configuration incase bringing own PostgresSQL instance and also set postgresql.enabled:false - db_host: '{{ .Release.Name }}-postgresql' + db_host: "{{ .Release.Name }}-postgresql" db_port: "5432" db_user: superset db_pass: superset