mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Introduced gpu profile in .env Added Dockerfile_tei fix datrie Removed LIGHTEN flag ### Type of change - [x] Documentation Update - [x] Refactoring
18 lines
569 B
YAML
18 lines
569 B
YAML
{{- 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"
|
|
cluster.routing.allocation.disk.watermark.low: 5gb
|
|
cluster.routing.allocation.disk.watermark.high: 3gb
|
|
cluster.routing.allocation.disk.watermark.flood_stage: 2gb
|
|
TZ: {{ .Values.env.TZ }}
|
|
{{- end -}}
|