fix: remove unused vault PVC from memory deployment
Build and Push / Test (push) Failing after 6s
Build and Push / Build and push image (push) Skipped

Memory service stores in pgvector, not local files.
PVC was RWO causing multi-node scheduling failures with 2 replicas.
MEM_HOME points to /tmp (emptyDir) for any scratch needs.
This commit is contained in:
2026-08-30 07:23:18 -07:00
parent 05c0943bd4
commit 4403913b39
2 changed files with 2 additions and 7 deletions
+1 -6
View File
@@ -70,7 +70,7 @@ spec:
- name: MEM_PORT
value: "8080"
- name: MEM_HOME
value: "/data"
value: "/tmp"
args:
- serve
- --port
@@ -97,14 +97,9 @@ spec:
initialDelaySeconds: 5
periodSeconds: 10
volumeMounts:
- name: data
mountPath: /data
- name: tmp
mountPath: /tmp
volumes:
- name: data
persistentVolumeClaim:
claimName: poimen-memory-vault
- name: tmp
emptyDir:
sizeLimit: 64Mi