fix(helm): change values.yaml comments (#31688)
This commit is contained in:
parent
27e42b5091
commit
7c90323649
|
|
@ -29,7 +29,7 @@ maintainers:
|
||||||
- name: craig-rueda
|
- name: craig-rueda
|
||||||
email: craig@craigrueda.com
|
email: craig@craigrueda.com
|
||||||
url: https://github.com/craig-rueda
|
url: https://github.com/craig-rueda
|
||||||
version: 0.13.5
|
version: 0.13.6
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
version: 12.1.6
|
version: 12.1.6
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,7 @@ NOTE: This file is generated by helm-docs: https://github.com/norwoodj/helm-docs
|
||||||
|
|
||||||
# superset
|
# superset
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
Apache Superset is a modern, enterprise-ready business intelligence web application
|
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. |
|
| 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 |
|
| envFromSecrets | list | `[]` | This can be a list of templated strings |
|
||||||
| extraConfigMountPath | string | `"/app/configs"` | |
|
| 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 |
|
| 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 |
|
| extraEnvRaw | list | `[]` | Extra environment variables in RAW format that will be passed into pods |
|
||||||
| extraLabels | object | `{}` | Labels to be added to all resources |
|
| extraLabels | object | `{}` | Labels to be added to all resources |
|
||||||
| extraSecretEnv | object | `{}` | Extra environment variables to pass as secrets |
|
| 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 | `[]` | |
|
| extraVolumeMounts | list | `[]` | |
|
||||||
| extraVolumes | list | `[]` | |
|
| extraVolumes | list | `[]` | |
|
||||||
| fullnameOverride | string | `nil` | Provide a name to override the full names of resources |
|
| fullnameOverride | string | `nil` | Provide a name to override the full names of resources |
|
||||||
|
|
|
||||||
|
|
@ -106,7 +106,7 @@ extraSecretEnv: {}
|
||||||
# # Generate your own secret key for encryption. Use openssl rand -base64 42 to generate a good key
|
# # 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'
|
# 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: {}
|
extraConfigs: {}
|
||||||
# import_datasources.yaml: |
|
# import_datasources.yaml: |
|
||||||
# databases:
|
# databases:
|
||||||
|
|
@ -120,7 +120,7 @@ extraConfigs: {}
|
||||||
# sqlalchemy_uri: example://example-db.local
|
# sqlalchemy_uri: example://example-db.local
|
||||||
# tables: []
|
# tables: []
|
||||||
|
|
||||||
# -- Extra files to mount on `/app/pythonpath` as secrets
|
# -- Extra files to be mounted as Secrets on the path specified in `configMountPath`
|
||||||
extraSecrets: {}
|
extraSecrets: {}
|
||||||
|
|
||||||
extraVolumes: []
|
extraVolumes: []
|
||||||
|
|
@ -277,7 +277,7 @@ supersetNode:
|
||||||
- ". {{ .Values.configMountPath }}/superset_bootstrap.sh; /usr/bin/run-server.sh"
|
- ". {{ .Values.configMountPath }}/superset_bootstrap.sh; /usr/bin/run-server.sh"
|
||||||
connections:
|
connections:
|
||||||
# -- Change in case of bringing your own redis and then also set redis.enabled:false
|
# -- 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_port: "6379"
|
||||||
redis_user: ""
|
redis_user: ""
|
||||||
# redis_password: superset
|
# redis_password: superset
|
||||||
|
|
@ -289,7 +289,7 @@ supersetNode:
|
||||||
enabled: false
|
enabled: false
|
||||||
ssl_cert_reqs: CERT_NONE
|
ssl_cert_reqs: CERT_NONE
|
||||||
# You need to change below configuration incase bringing own PostgresSQL instance and also set postgresql.enabled:false
|
# 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_port: "5432"
|
||||||
db_user: superset
|
db_user: superset
|
||||||
db_pass: superset
|
db_pass: superset
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue