17 lines
366 B
YAML
17 lines
366 B
YAML
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
annotations:
|
|
# Never let ArgoCD prune this PVC: it holds the n8n workflows database.
|
|
argocd.argoproj.io/sync-options: Prune=false
|
|
name: n8n-pvc
|
|
namespace: n8n
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
resources:
|
|
requests:
|
|
storage: 10Gi
|
|
storageClassName: local-path
|
|
volumeName: n8n-pv
|