Files
ragflow/helm/templates/mysql-config.yaml

12 lines
197 B
YAML
Raw Permalink Normal View History

{{- if .Values.mysql.enabled }}
---
apiVersion: v1
kind: ConfigMap
metadata:
name: mysql-init-script
data:
init.sql: |-
CREATE DATABASE IF NOT EXISTS rag_flow;
USE rag_flow;
{{- end }}