Files
2026-07-22 14:41:10 +00:00

27 lines
728 B
YAML

# Persists /home/node/.n8n (encryption key backup, local binary data cache,
# community nodes). Workflow/execution data itself lives in Postgres.
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: n8n-data
namespace: watch
spec:
accessModes: ["ReadWriteOnce"]
resources:
requests:
storage: 2Gi
---
# Separate volume for Read/Write File nodes (digest prompt + output), kept
# apart from n8n-data (n8n's own internal directory, which n8n always
# blocks file-node access to regardless of N8N_RESTRICT_FILE_ACCESS_TO).
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: n8n-digest-workspace
namespace: watch
spec:
accessModes: ["ReadWriteOnce"]
resources:
requests:
storage: 1Gi