fix: add fsGroup + init container for SQLite write permissions

This commit is contained in:
2026-03-11 04:08:22 +00:00
parent 8cabee134f
commit aadb110bc9

View File

@@ -96,6 +96,15 @@ spec:
labels: labels:
app: telephony-web app: telephony-web
spec: 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: containers:
- name: telephony-web - name: telephony-web
image: localhost/fc-telephony-web:latest image: localhost/fc-telephony-web:latest