mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-02-04 17:45:07 +08:00
Add OpenSearch support to Helm chart (#8921)
### What problem does this PR solve? Adds OpenSearch support to the RAGFlow Helm chart based on https://github.com/infiniflow/ragflow/pull/7140 and the existing Elasticsearch support in the Helm chart. ### Type of change - [X] New Feature (non-breaking change which adds functionality)
This commit is contained in:
18
helm/templates/opensearch-config.yaml
Normal file
18
helm/templates/opensearch-config.yaml
Normal file
@ -0,0 +1,18 @@
|
||||
{{- if eq .Values.env.DOC_ENGINE "opensearch" -}}
|
||||
apiVersion: v1
|
||||
kind: ConfigMap
|
||||
metadata:
|
||||
name: {{ include "ragflow.fullname" . }}-opensearch-config
|
||||
data:
|
||||
node.name: opensearch01
|
||||
bootstrap.memory_lock: "false"
|
||||
discovery.type: single-node
|
||||
plugins.security.disabled: "false"
|
||||
plugins.security.ssl.http.enabled: "false"
|
||||
plugins.security.ssl.transport.enabled: "true"
|
||||
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.TIMEZONE }}
|
||||
http.port: "9201"
|
||||
{{- end -}}
|
||||
Reference in New Issue
Block a user