feat: 添加 Dockerfile、docker-compose 及 K8s kustomize 部署文件

This commit is contained in:
2026-06-15 16:49:35 +08:00
parent fd1bac551c
commit eeea55e9e4
18 changed files with 587 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: graphrag-ingress
annotations:
nginx.ingress.kubernetes.io/proxy-body-size: "200m"
nginx.ingress.kubernetes.io/proxy-read-timeout: "120"
spec:
rules:
- host: graphrag-backend.plfai.cn
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: backend
port:
number: 8000
- host: graphrag.plfai.cn
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: frontend
port:
number: 80