mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-07-31 03:21:59 +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)
10 lines
154 B
YAML
10 lines
154 B
YAML
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: mysql-init-script
|
|
data:
|
|
init.sql: |-
|
|
CREATE DATABASE IF NOT EXISTS rag_flow;
|
|
USE rag_flow;
|