diff options
| author | Paul Buetow <paul@buetow.org> | 2025-12-26 23:33:51 +0200 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-12-26 23:33:51 +0200 |
| commit | 598bcd7f6ccf9e884ec1a29e8188947954bc064f (patch) | |
| tree | 68adc26c21dc57115d222d678240d8a9fa2949e5 /f3s/filebrowser | |
| parent | fce1f89375728e4560a40defbc19681c131de5cf (diff) | |
add webdav
Diffstat (limited to 'f3s/filebrowser')
| -rw-r--r-- | f3s/filebrowser/helm-chart/templates/deployment.yaml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/f3s/filebrowser/helm-chart/templates/deployment.yaml b/f3s/filebrowser/helm-chart/templates/deployment.yaml index b0d5270..e079055 100644 --- a/f3s/filebrowser/helm-chart/templates/deployment.yaml +++ b/f3s/filebrowser/helm-chart/templates/deployment.yaml @@ -14,7 +14,9 @@ spec: app: filebrowser spec: securityContext: - fsGroup: 1000 + runAsUser: 65534 + runAsGroup: 65534 + fsGroup: 65534 containers: - name: filebrowser image: filebrowser/filebrowser:latest @@ -22,9 +24,9 @@ spec: - containerPort: 80 env: - name: PUID - value: "1000" + value: "65534" - name: PGID - value: "1000" + value: "65534" volumeMounts: - name: filebrowser-data mountPath: /srv |
