Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7e6ea9d66c | |||
| df2a1259d9 |
@@ -187,7 +187,15 @@ spec:
|
|||||||
cpu: "50m"
|
cpu: "50m"
|
||||||
containers:
|
containers:
|
||||||
- name: umami
|
- name: umami
|
||||||
image: ghcr.io/umami-software/umami:postgresql-v1.38.0
|
# NOTE: pinned to the exact image SHA the working 120d-old pod
|
||||||
|
# is on. v1.38.0 (the latest postgresql-vX.Y.Z) tries to apply
|
||||||
|
# migration `02_add_event_data` which requires an `event` table
|
||||||
|
# that this DB doesn't have -- the DB schema is older than v1
|
||||||
|
# numbered migrations expect. Until we plan a proper migration
|
||||||
|
# (likely to umami v3.x, which is what the dashboard `→ 3.1`
|
||||||
|
# hint suggests), this stays SHA-pinned so Renovate doesn't
|
||||||
|
# touch it and pod restarts don't roll the version forward.
|
||||||
|
image: ghcr.io/umami-software/umami@sha256:28f263fe06f79ebffa5a6a6e9bd33b7a278e9342a88e0bdac812416c9f9e4361
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 3000
|
- containerPort: 3000
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -107,7 +107,12 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: filebrowser
|
- name: filebrowser
|
||||||
image: filebrowser/filebrowser:v2.63.13
|
# NOTE: v2-alpine is a moving tag (Renovate can't track it).
|
||||||
|
# Pinning to v2.63.13 (debian-based default) broke the PVC permissions
|
||||||
|
# (the image runs as a non-root UID and can't write to files left
|
||||||
|
# by the alpine variant). A clean re-pin needs either an initContainer
|
||||||
|
# to chown the PVC, or a fsGroup on the pod spec. Revisit when time permits.
|
||||||
|
image: filebrowser/filebrowser:v2-alpine
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8080
|
- containerPort: 8080
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
|
|||||||
Reference in New Issue
Block a user