From 710037d87fef39bc704d4ac0e2b50311b12c8339 Mon Sep 17 00:00:00 2001 From: marsal wang <707783088@qq.com> Date: Tue, 22 Feb 2022 14:06:43 +0800 Subject: [PATCH] es --- local-values/es/crm1.yaml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/local-values/es/crm1.yaml b/local-values/es/crm1.yaml index 5e67bbe..9b63b48 100644 --- a/local-values/es/crm1.yaml +++ b/local-values/es/crm1.yaml @@ -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.