File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ maintainers:
29
29
- name : craig-rueda
30
30
31
31
url : https://github.com/craig-rueda
32
- version : 0.13.5
32
+ version : 0.13.6
33
33
dependencies :
34
34
- name : postgresql
35
35
version : 12.1.6
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ NOTE: This file is generated by helm-docs: https://github.com/norwoodj/helm-docs
23
23
24
24
# superset
25
25
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 )
27
27
28
28
Apache Superset is a modern, enterprise-ready business intelligence web application
29
29
@@ -66,12 +66,12 @@ On helm this can be set on `extraSecretEnv.SUPERSET_SECRET_KEY` or `configOverri
66
66
| 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. |
67
67
| envFromSecrets | list | ` [] ` | This can be a list of templated strings |
68
68
| 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 ` |
70
70
| extraEnv | object | ` {} ` | Extra environment variables that will be passed into pods |
71
71
| extraEnvRaw | list | ` [] ` | Extra environment variables in RAW format that will be passed into pods |
72
72
| extraLabels | object | ` {} ` | Labels to be added to all resources |
73
73
| 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 ` |
75
75
| extraVolumeMounts | list | ` [] ` | |
76
76
| extraVolumes | list | ` [] ` | |
77
77
| fullnameOverride | string | ` nil ` | Provide a name to override the full names of resources |
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ extraSecretEnv: {}
106
106
# # Generate your own secret key for encryption. Use openssl rand -base64 42 to generate a good key
107
107
# SUPERSET_SECRET_KEY: 'CHANGE_ME_TO_A_COMPLEX_RANDOM_SECRET'
108
108
109
- # -- Extra files to mount on `/app/pythonpath `
109
+ # -- Extra files to be mounted as ConfigMap on the path specified in `extraConfigMountPath `
110
110
extraConfigs : {}
111
111
# import_datasources.yaml: |
112
112
# databases:
@@ -120,7 +120,7 @@ extraConfigs: {}
120
120
# sqlalchemy_uri: example://example-db.local
121
121
# tables: []
122
122
123
- # -- Extra files to mount on `/app/pythonpath` as secrets
123
+ # -- Extra files to be mounted as Secrets on the path specified in `configMountPath`
124
124
extraSecrets : {}
125
125
126
126
extraVolumes : []
@@ -277,7 +277,7 @@ supersetNode:
277
277
- " . {{ .Values.configMountPath }}/superset_bootstrap.sh; /usr/bin/run-server.sh"
278
278
connections :
279
279
# -- 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"
281
281
redis_port : " 6379"
282
282
redis_user : " "
283
283
# redis_password: superset
@@ -289,7 +289,7 @@ supersetNode:
289
289
enabled : false
290
290
ssl_cert_reqs : CERT_NONE
291
291
# 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"
293
293
db_port : " 5432"
294
294
db_user : superset
295
295
db_pass : superset
You can’t perform that action at this time.
0 commit comments