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 ## @param extraConfig Append extra configuration to the elasticsearch node configuration
## Use this instead of `config` to add more configuration ## Use this instead of `config` to add more configuration
## See below example: ## See below example:
## extraConfig: extraConfig:
## node: xpack.security.enabled: true
## store: xpack.security.authc.api_key.enabled: true
## allow_mmap: false # node:
# store:
# allow_mmap: false
## ref: https://www.elastic.co/guide/en/elasticsearch/reference/current/settings.html ## 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 ## @param extraVolumes A list of volumes to be added to the pod
## Example Use Case: mount ssl certificates when elasticsearch has tls enabled ## Example Use Case: mount ssl certificates when elasticsearch has tls enabled
## extraVolumes: ## extraVolumes:
@ -196,7 +198,7 @@ extraVolumeMounts: []
initScripts: initScripts:
my_init_script.sh: | my_init_script.sh: |
#!/bin/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: {} # initScripts: {}
## @param initScriptsCM ConfigMap with the init scripts. Evaluated as a template. ## @param initScriptsCM ConfigMap with the init scripts. Evaluated as a template.