From fd278a8f2393c483c8521f1d488f282eead5f409 Mon Sep 17 00:00:00 2001 From: Peter Kurfer Date: Tue, 7 May 2024 17:17:04 +0200 Subject: [PATCH] chore(noco): replace PVC --- nocodb/resources/deployment.yaml | 1 + nocodb/resources/pvc.yaml | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/nocodb/resources/deployment.yaml b/nocodb/resources/deployment.yaml index 3ee6749..911d2e4 100644 --- a/nocodb/resources/deployment.yaml +++ b/nocodb/resources/deployment.yaml @@ -88,4 +88,5 @@ spec: securityContext: runAsUser: 1000 runAsGroup: 1000 + fsGroup: 1000 runAsNonRoot: true \ No newline at end of file diff --git a/nocodb/resources/pvc.yaml b/nocodb/resources/pvc.yaml index 8144b05..25e932b 100644 --- a/nocodb/resources/pvc.yaml +++ b/nocodb/resources/pvc.yaml @@ -6,9 +6,10 @@ metadata: labels: app.kubernetes.io/name: nocodb spec: - accessModes: - - ReadWriteMany + storageClassName: garage resources: requests: storage: 10Gi - storageClassName: r2 + volumeMode: Filesystem + accessModes: + - ReadWriteMany