This commit is contained in:
marsal wang
2022-02-22 14:06:43 +08:00
parent dba323ec50
commit 710037d87f

View File

@ -168,13 +168,15 @@ config: {}
## @param extraConfig Append extra configuration to the elasticsearch node configuration
## Use this instead of `config` to add more configuration
## See below example:
## extraConfig:
## node:
## store:
## allow_mmap: false
extraConfig:
xpack.security.enabled: true
xpack.security.authc.api_key.enabled: true
# node:
# store:
# allow_mmap: false
## ref: https://www.elastic.co/guide/en/elasticsearch/reference/current/settings.html
##
extraConfig: {}
# extraConfig: {}
## @param extraVolumes A list of volumes to be added to the pod
## Example Use Case: mount ssl certificates when elasticsearch has tls enabled
## extraVolumes:
@ -196,7 +198,7 @@ extraVolumeMounts: []
initScripts:
my_init_script.sh: |
#!/bin/sh
/opt/bitnami/elasticsearch/bin/elasticsearch-plugin install -b https://hub.fastgit.org/medcl/elasticsearch-analysis-ik/releases/download/v7.16.2/elasticsearch-analysis-ik-7.16.2.zip
/opt/bitnami/elasticsearch/bin/elasticsearch-plugin install -b https://github.com/medcl/elasticsearch-analysis-ik/releases/download/v7.16.2/elasticsearch-analysis-ik-7.16.2.zip
# initScripts: {}
## @param initScriptsCM ConfigMap with the init scripts. Evaluated as a template.