mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-07-30 08:12:02 +08:00

### What problem does this PR solve? Add's a Helm chart for deploying RAGFlow on Kubernetes. Closes #864. ### Type of change - [X] New Feature (non-breaking change which adds functionality)
14 lines
374 B
YAML
14 lines
374 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"
|
|
{{- end -}}
|