From 74b9a31352aa6aa01542fd2907120a518383e50a Mon Sep 17 00:00:00 2001 From: chemavx Date: Fri, 24 Apr 2026 10:45:56 +0000 Subject: [PATCH] openclaw: corrige mountPath a /home/node/.openclaw El config dir de OpenClaw es /home/node/.openclaw, no /data. Monta el PVC en la ruta correcta para que openclaw.json persista. Elimina OPENCLAW_DATA_DIR (no era el config dir). Co-Authored-By: Claude Sonnet 4.6 --- openclaw/deployment-openclaw.yaml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/openclaw/deployment-openclaw.yaml b/openclaw/deployment-openclaw.yaml index 7c47632..4b71513 100644 --- a/openclaw/deployment-openclaw.yaml +++ b/openclaw/deployment-openclaw.yaml @@ -26,8 +26,6 @@ spec: ports: - containerPort: 18789 env: - - name: OPENCLAW_DATA_DIR - value: /data - name: NODE_OPTIONS value: --max-old-space-size=1536 resources: @@ -39,7 +37,7 @@ spec: memory: 2Gi volumeMounts: - name: data - mountPath: /data + mountPath: /home/node/.openclaw volumes: - name: data persistentVolumeClaim: