Add service_conf and llm_factories options to Helm chart (#8607)

### What problem does this PR solve?

### Type of change

- [X] New Feature (non-breaking change which adds functionality)
This commit is contained in:
Scott Davidson
2025-07-02 02:58:17 +01:00
committed by GitHub
parent 212d5ce7ff
commit 9dd3dfaab0
3 changed files with 51 additions and 0 deletions

View File

@ -1,6 +1,20 @@
---
apiVersion: v1
kind: ConfigMap
metadata:
name: ragflow-service-config
data:
{{- with .Values.ragflow.service_conf }}
local.service_conf.yaml: |
{{- . | toYaml | nindent 4 }}
{{- end }}
{{- with .Values.ragflow.llm_factories }}
llm_factories.json: |
{{- . | toPrettyJson | nindent 4 }}
{{- end }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: nginx-config
data: