ragflow / helm /templates /elasticsearch-config.yaml
Starowo's picture
Upload 1411 files
b9fe2b4 verified
raw
history blame contribute delete
374 Bytes
{{- if eq .Values.env.DOC_ENGINE "elasticsearch" -}}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "ragflow.fullname" . }}-es-config
data:
node.name: "es01"
bootstrap.memory_lock: "false"
discovery.type: "single-node"
xpack.security.enabled: "true"
xpack.security.http.ssl.enabled: "false"
xpack.security.transport.ssl.enabled: "false"
{{- end -}}