bugfix: 修复deer-flow部署 (#124)

This commit is contained in:
hhhhsc701
2025-12-02 19:23:30 +08:00
committed by GitHub
parent bcd1bc1534
commit b5fa8af900
2 changed files with 40 additions and 31 deletions

View File

@@ -35,6 +35,13 @@ spec:
value: pipeline
ports:
- containerPort: 9001
resources:
limits:
cpu: 16
memory: 32Gi
requests:
cpu: 100m
memory: 100Mi
volumeMounts:
- name: dataset-volume
mountPath: /dataset
@@ -43,13 +50,11 @@ spec:
subPath: mineru
volumes:
- name: dataset-volume
hostPath:
path: /opt/datamate/data/dataset
type: DirectoryOrCreate
persistentVolumeClaim:
claimName: datamate-dataset-pvc
- name: log-volume
hostPath:
path: /opt/datamate/data/log
type: DirectoryOrCreate
persistentVolumeClaim:
claimName: datamate-log-pvc
---
apiVersion: v1