您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

elasticsearch-config.yaml 575B

1234567891011121314151617
  1. {{- if eq .Values.env.DOC_ENGINE "elasticsearch" -}}
  2. apiVersion: v1
  3. kind: ConfigMap
  4. metadata:
  5. name: {{ include "ragflow.fullname" . }}-es-config
  6. data:
  7. node.name: "es01"
  8. bootstrap.memory_lock: "false"
  9. discovery.type: "single-node"
  10. xpack.security.enabled: "true"
  11. xpack.security.http.ssl.enabled: "false"
  12. xpack.security.transport.ssl.enabled: "false"
  13. cluster.routing.allocation.disk.watermark.low: 5gb
  14. cluster.routing.allocation.disk.watermark.high: 3gb
  15. cluster.routing.allocation.disk.watermark.flood_stage: 2gb
  16. TZ: {{ .Values.env.TIMEZONE }}
  17. {{- end -}}