Add volume and volumeMount to Chart

This commit is contained in:
wbsong111
2025-08-19 12:15:12 +09:00
parent a2b0682aaf
commit 57646ec035
2 changed files with 33 additions and 0 deletions
+27
View File
@@ -98,6 +98,33 @@ ragflow:
# model_type: chat
# is_tools: false
# Additional volumes to be mounted in the ragflow container
# Example:
# volumes:
# - name: my-custom-volume
# configMap:
# name: my-config
# - name: my-secret-volume
# secret:
# secretName: my-secret
# - name: my-pvc-volume
# persistentVolumeClaim:
# claimName: my-pvc
volumes: []
# Additional volume mounts for the ragflow container
# Example:
# volumeMounts:
# - name: my-custom-volume
# mountPath: /app/config
# readOnly: true
# - name: my-secret-volume
# mountPath: /app/secrets
# readOnly: true
# - name: my-pvc-volume
# mountPath: /app/data
volumeMounts: []
# Kubernetes configuration
deployment:
strategy: