From 35827a7043f948e845f40be2f636e513fb0c350f Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Sun, 19 Apr 2026 10:04:30 -0400 Subject: [PATCH] fix(infra): set ceph-filesystem storageClass for RWX workspaces PVC Default storageClass (ceph-block) doesn't support ReadWriteMany. Co-Authored-By: Claude Opus 4.6 (1M context) --- apps/cli/infra/k8s/workspaces-pvc.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 apps/cli/infra/k8s/workspaces-pvc.yaml diff --git a/apps/cli/infra/k8s/workspaces-pvc.yaml b/apps/cli/infra/k8s/workspaces-pvc.yaml new file mode 100644 index 0000000..e9fca9d --- /dev/null +++ b/apps/cli/infra/k8s/workspaces-pvc.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: PersistentVolumeClaim +metadata: + name: shannon-workspaces + namespace: shannon +spec: + accessModes: + - ReadWriteMany + storageClassName: ceph-filesystem + resources: + requests: + storage: 10Gi