Compare commits
8 Commits
e363c6594d
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 7b545c1ec7 | |||
| ea66afa960 | |||
| 87b062e84a | |||
| bd0531e4a8 | |||
| dc64bb2d79 | |||
| 7e6ea9d66c | |||
| a964dc20a4 | |||
| df2a1259d9 |
@@ -187,7 +187,7 @@ spec:
|
||||
cpu: "50m"
|
||||
containers:
|
||||
- name: umami
|
||||
image: ghcr.io/umami-software/umami:postgresql-v1.38.0
|
||||
image: ghcr.io/umami-software/umami:3.1.0
|
||||
ports:
|
||||
- containerPort: 3000
|
||||
env:
|
||||
|
||||
@@ -105,9 +105,22 @@ spec:
|
||||
labels:
|
||||
app: filebrowser
|
||||
spec:
|
||||
# filebrowser v2.63.13 (debian default) runs as a non-root UID by default
|
||||
# and can't write to PVC files left by the previous v2-alpine image (which
|
||||
# ran as root). Force root explicitly so the existing PVC contents are
|
||||
# readable + writable. (The alternative -- chown the PVC then drop perms --
|
||||
# needs a one-shot initContainer; not worth the moving parts here.)
|
||||
securityContext:
|
||||
runAsUser: 0
|
||||
runAsGroup: 0
|
||||
containers:
|
||||
- name: filebrowser
|
||||
image: filebrowser/filebrowser:v2.63.13
|
||||
# v2.63.x default config path is `/config/settings.json`; our ConfigMap
|
||||
# is mounted at `/.filebrowser.json`. Tell filebrowser to read it
|
||||
# explicitly so it picks up port 8080 (else it falls back to port 80
|
||||
# and the readiness probe on 8080 fails).
|
||||
args: ["-c", "/.filebrowser.json"]
|
||||
ports:
|
||||
- containerPort: 8080
|
||||
volumeMounts:
|
||||
|
||||
Reference in New Issue
Block a user