This is an automated email from the ASF dual-hosted git repository.
villebro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new 7c90323649 fix(helm): change values.yaml comments (#31688)
7c90323649 is described below
commit 7c903236498281f34970012e701250edef1b1493
Author: João Pedro Alcântara <[email protected]>
AuthorDate: Thu Jan 2 18:56:11 2025 -0300
fix(helm): change values.yaml comments (#31688)
---
helm/superset/Chart.yaml | 2 +-
helm/superset/README.md | 6 +++---
helm/superset/values.yaml | 8 ++++----
3 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/helm/superset/Chart.yaml b/helm/superset/Chart.yaml
index 202480e475..09cb8ab7d2 100644
--- a/helm/superset/Chart.yaml
+++ b/helm/superset/Chart.yaml
@@ -29,7 +29,7 @@ maintainers:
- name: craig-rueda
email: [email protected]
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 acd2519c98..d8fd9fe2a9 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
-
+
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 eec82cf348..eac2c75990 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