Skip to content

Commit 7c90323

Browse files
authored
fix(helm): change values.yaml comments (#31688)
1 parent 27e42b5 commit 7c90323

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

helm/superset/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ maintainers:
2929
- name: craig-rueda
3030
3131
url: https://github.com/craig-rueda
32-
version: 0.13.5
32+
version: 0.13.6
3333
dependencies:
3434
- name: postgresql
3535
version: 12.1.6

helm/superset/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ NOTE: This file is generated by helm-docs: https://github.com/norwoodj/helm-docs
2323

2424
# superset
2525

26-
![Version: 0.13.5](https://img.shields.io/badge/Version-0.13.5-informational?style=flat-square)
26+
![Version: 0.13.6](https://img.shields.io/badge/Version-0.13.6-informational?style=flat-square)
2727

2828
Apache Superset is a modern, enterprise-ready business intelligence web application
2929

@@ -66,12 +66,12 @@ On helm this can be set on `extraSecretEnv.SUPERSET_SECRET_KEY` or `configOverri
6666
| 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. |
6767
| envFromSecrets | list | `[]` | This can be a list of templated strings |
6868
| extraConfigMountPath | string | `"/app/configs"` | |
69-
| extraConfigs | object | `{}` | Extra files to mount on `/app/pythonpath` |
69+
| extraConfigs | object | `{}` | Extra files to be mounted as ConfigMap on the path specified in `extraConfigMountPath` |
7070
| extraEnv | object | `{}` | Extra environment variables that will be passed into pods |
7171
| extraEnvRaw | list | `[]` | Extra environment variables in RAW format that will be passed into pods |
7272
| extraLabels | object | `{}` | Labels to be added to all resources |
7373
| extraSecretEnv | object | `{}` | Extra environment variables to pass as secrets |
74-
| extraSecrets | object | `{}` | Extra files to mount on `/app/pythonpath` as secrets |
74+
| extraSecrets | object | `{}` | Extra files to be mounted as Secrets on the path specified in `configMountPath` |
7575
| extraVolumeMounts | list | `[]` | |
7676
| extraVolumes | list | `[]` | |
7777
| fullnameOverride | string | `nil` | Provide a name to override the full names of resources |

helm/superset/values.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ extraSecretEnv: {}
106106
# # Generate your own secret key for encryption. Use openssl rand -base64 42 to generate a good key
107107
# SUPERSET_SECRET_KEY: 'CHANGE_ME_TO_A_COMPLEX_RANDOM_SECRET'
108108

109-
# -- Extra files to mount on `/app/pythonpath`
109+
# -- Extra files to be mounted as ConfigMap on the path specified in `extraConfigMountPath`
110110
extraConfigs: {}
111111
# import_datasources.yaml: |
112112
# databases:
@@ -120,7 +120,7 @@ extraConfigs: {}
120120
# sqlalchemy_uri: example://example-db.local
121121
# tables: []
122122

123-
# -- Extra files to mount on `/app/pythonpath` as secrets
123+
# -- Extra files to be mounted as Secrets on the path specified in `configMountPath`
124124
extraSecrets: {}
125125

126126
extraVolumes: []
@@ -277,7 +277,7 @@ supersetNode:
277277
- ". {{ .Values.configMountPath }}/superset_bootstrap.sh; /usr/bin/run-server.sh"
278278
connections:
279279
# -- Change in case of bringing your own redis and then also set redis.enabled:false
280-
redis_host: '{{ .Release.Name }}-redis-headless'
280+
redis_host: "{{ .Release.Name }}-redis-headless"
281281
redis_port: "6379"
282282
redis_user: ""
283283
# redis_password: superset
@@ -289,7 +289,7 @@ supersetNode:
289289
enabled: false
290290
ssl_cert_reqs: CERT_NONE
291291
# You need to change below configuration incase bringing own PostgresSQL instance and also set postgresql.enabled:false
292-
db_host: '{{ .Release.Name }}-postgresql'
292+
db_host: "{{ .Release.Name }}-postgresql"
293293
db_port: "5432"
294294
db_user: superset
295295
db_pass: superset

0 commit comments

Comments
 (0)