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.

opensearch-config.yaml 611B

123456789101112131415161718
  1. {{- if eq .Values.env.DOC_ENGINE "opensearch" -}}
  2. apiVersion: v1
  3. kind: ConfigMap
  4. metadata:
  5. name: {{ include "ragflow.fullname" . }}-opensearch-config
  6. data:
  7. node.name: opensearch01
  8. bootstrap.memory_lock: "false"
  9. discovery.type: single-node
  10. plugins.security.disabled: "false"
  11. plugins.security.ssl.http.enabled: "false"
  12. plugins.security.ssl.transport.enabled: "true"
  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. http.port: "9201"
  18. {{- end -}}