From aadb110bc97327c5343c45da72162d23f3690090 Mon Sep 17 00:00:00 2001 From: bluejay Date: Wed, 11 Mar 2026 04:08:22 +0000 Subject: [PATCH] fix: add fsGroup + init container for SQLite write permissions --- apps/telephony/telephony.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/apps/telephony/telephony.yaml b/apps/telephony/telephony.yaml index 61b9806..985be22 100644 --- a/apps/telephony/telephony.yaml +++ b/apps/telephony/telephony.yaml @@ -96,6 +96,15 @@ spec: labels: app: telephony-web spec: + securityContext: + fsGroup: 1654 + initContainers: + - name: fix-data-perms + image: busybox:latest + command: ["sh", "-c", "chown -R 1654:1654 /data"] + volumeMounts: + - name: telephony-data + mountPath: /data containers: - name: telephony-web image: localhost/fc-telephony-web:latest