Same protection already given to polymarket-bot postgres and n8n: without it, removing a PVC manifest from git (rename, multi-doc refactor) would make ArgoCD destroy the volume and its data. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
16 lines
347 B
YAML
16 lines
347 B
YAML
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
annotations:
|
|
# Never let ArgoCD prune this PVC: it holds persistent app data.
|
|
argocd.argoproj.io/sync-options: Prune=false
|
|
name: openclaw-pvc
|
|
namespace: openclaw
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
storageClassName: local-path
|
|
resources:
|
|
requests:
|
|
storage: 5Gi
|