You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

elasticsearch-config.yaml 374B

12345678910111213
  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. {{- end -}}