Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2a9dd903d2 |
@@ -46,45 +46,10 @@ data:
|
|||||||
"dependencyDashboardTitle": "Renovate Dependency Dashboard",
|
"dependencyDashboardTitle": "Renovate Dependency Dashboard",
|
||||||
"prHourlyLimit": 16,
|
"prHourlyLimit": 16,
|
||||||
"prConcurrentLimit": 16,
|
"prConcurrentLimit": 16,
|
||||||
"enabledManagers": ["kubernetes", "helm-values", "custom.regex"],
|
"enabledManagers": ["kubernetes", "helm-values"],
|
||||||
"kubernetes": {
|
"kubernetes": {
|
||||||
"managerFilePatterns": ["/.+\\.ya?ml$/"]
|
"managerFilePatterns": ["/.+\\.ya?ml$/"]
|
||||||
},
|
},
|
||||||
"customManagers": [
|
|
||||||
{
|
|
||||||
"description": "termix: docker image tag is `release-X.Y.Z` but the upstream GitHub release tag_name is `release-X.Y.Z-tag` (different from the release name). regex versioning parses currentValue (no -tag); extractVersion strips the -tag suffix from candidate tag_names so they normalize to the same shape Renovate writes back to the manifest.",
|
|
||||||
"customType": "regex",
|
|
||||||
"managerFilePatterns": ["/termix-system/.+\\.ya?ml$/"],
|
|
||||||
"matchStrings": [
|
|
||||||
"image:\\s+(?<depName>ghcr\\.io/lukegus/termix):(?<currentValue>release-\\d+\\.\\d+\\.\\d+)"
|
|
||||||
],
|
|
||||||
"datasourceTemplate": "github-releases",
|
|
||||||
"packageNameTemplate": "Termix-SSH/Termix",
|
|
||||||
"versioningTemplate": "regex:^release-(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)$",
|
|
||||||
"extractVersionTemplate": "^(?<version>release-\\d+\\.\\d+\\.\\d+)"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "linuxserver servarr apps (prowlarr, radarr, sonarr) use tag pattern `version-X.Y.Z.B` (4 segments + `version-` prefix). The kubernetes manager's default docker versioning rejects them at the pre-check (same failure class as termix), so no PRs ever open. Use regex versioning to parse the prefixed 4-segment form; depName is captured from the regex so the same customManager handles all three apps.",
|
|
||||||
"customType": "regex",
|
|
||||||
"managerFilePatterns": ["/servarr-system/.+\\.ya?ml$/"],
|
|
||||||
"matchStrings": [
|
|
||||||
"image:\\s+linuxserver/(?<depName>prowlarr|radarr|sonarr):(?<currentValue>version-\\d+\\.\\d+\\.\\d+\\.\\d+)"
|
|
||||||
],
|
|
||||||
"datasourceTemplate": "docker",
|
|
||||||
"packageNameTemplate": "linuxserver/{{depName}}",
|
|
||||||
"versioningTemplate": "regex:^version-(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)\\.(?<build>\\d+)$"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "umami: the docker image tag is `postgresql-vX.Y.Z` (the PostgreSQL-flavored variant). Default docker versioning rejects the prefix. Same fix as termix/servarr: regex versioning parses the prefixed value; ghcr.io tag list is filtered to the postgresql-v* track only.",
|
|
||||||
"customType": "regex",
|
|
||||||
"managerFilePatterns": ["/felhom-system/umami\\.ya?ml$/"],
|
|
||||||
"matchStrings": [
|
|
||||||
"image:\\s+(?<depName>ghcr\\.io/umami-software/umami):(?<currentValue>postgresql-v\\d+\\.\\d+\\.\\d+)"
|
|
||||||
],
|
|
||||||
"datasourceTemplate": "docker",
|
|
||||||
"versioningTemplate": "regex:^postgresql-v(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)$"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"description": "All apps: 3-day stability gate before any PR opens",
|
"description": "All apps: 3-day stability gate before any PR opens",
|
||||||
@@ -129,42 +94,6 @@ data:
|
|||||||
"description": "wanderer: db + web update together in one PR",
|
"description": "wanderer: db + web update together in one PR",
|
||||||
"matchPackageNames": ["flomp/wanderer-db", "flomp/wanderer-web"],
|
"matchPackageNames": ["flomp/wanderer-db", "flomp/wanderer-web"],
|
||||||
"groupName": "wanderer"
|
"groupName": "wanderer"
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "meilisearch: every version bump can require an index format migration via dump/restore (see https://www.meilisearch.com/docs/learn/update_and_migration/updating). PR #32 (v1.11.3 -> v1.45.2) on 2026-06-06 broke wanderer with `Your database version (1.11.3) is incompatible with your current engine version (1.45.2)`. Hold ALL meilisearch updates behind dashboard approval so the migration is planned before the PR even opens.",
|
|
||||||
"matchPackageNames": ["getmeili/meilisearch"],
|
|
||||||
"dependencyDashboardApproval": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "Postgres-family images: a major bump (e.g. 16 -> 17) requires pg_upgrade or dump/restore — the new server binary refuses to open the old data directory (`database files are incompatible with server`). PR #76 (immich-app/postgres 16 -> 17) on 2026-06-06 crashlooped immich-postgres and immich-server. Renovate's docker versioning treats these custom tag formats inconsistently, so don't trust the major/minor classification: hold ALL updates for these images behind explicit dashboard approval. Includes vanilla postgres, postgis/postgis (where the tag prefix IS the pg major), and ghcr.io/immich-app/postgres (custom `N-vectorchordX.Y.Z` form).",
|
|
||||||
"matchPackageNames": [
|
|
||||||
"postgres",
|
|
||||||
"postgis/postgis",
|
|
||||||
"ghcr.io/immich-app/postgres"
|
|
||||||
],
|
|
||||||
"dependencyDashboardApproval": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "termix: kubernetes manager would extract the image with versioning=docker and silently skip it (release-1.11.0 fails the docker pre-check). Disable that extraction; customManagers above does the real work via github-releases.",
|
|
||||||
"matchManagers": ["kubernetes"],
|
|
||||||
"matchPackageNames": ["ghcr.io/lukegus/termix"],
|
|
||||||
"enabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "linuxserver servarr apps: same disable pattern as termix. The customManager above handles extraction with the right versioning; turn off the default kubernetes-manager extraction so it doesn't silently skip + clutter the dashboard.",
|
|
||||||
"matchManagers": ["kubernetes"],
|
|
||||||
"matchPackageNames": [
|
|
||||||
"linuxserver/prowlarr",
|
|
||||||
"linuxserver/radarr",
|
|
||||||
"linuxserver/sonarr"
|
|
||||||
],
|
|
||||||
"enabled": false
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"description": "umami: same disable pattern. customManager handles extraction; kubernetes-manager would silently skip `postgresql-vX.Y.Z`.",
|
|
||||||
"matchManagers": ["kubernetes"],
|
|
||||||
"matchPackageNames": ["ghcr.io/umami-software/umami"],
|
|
||||||
"enabled": false
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"labels": ["renovate"]
|
"labels": ["renovate"]
|
||||||
@@ -178,7 +107,7 @@ metadata:
|
|||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/instance: renovate
|
app.kubernetes.io/instance: renovate
|
||||||
app.kubernetes.io/name: renovate
|
app.kubernetes.io/name: renovate
|
||||||
app.kubernetes.io/version: "43.209.3"
|
app.kubernetes.io/version: "43.197.0"
|
||||||
spec:
|
spec:
|
||||||
# Sat 02:00 Europe/Budapest — leaves the full weekend for troubleshooting
|
# Sat 02:00 Europe/Budapest — leaves the full weekend for troubleshooting
|
||||||
# if a Renovate-merged update breaks something.
|
# if a Renovate-merged update breaks something.
|
||||||
@@ -193,14 +122,14 @@ spec:
|
|||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/instance: renovate
|
app.kubernetes.io/instance: renovate
|
||||||
app.kubernetes.io/name: renovate
|
app.kubernetes.io/name: renovate
|
||||||
app.kubernetes.io/version: "43.209.3"
|
app.kubernetes.io/version: "43.197.0"
|
||||||
spec:
|
spec:
|
||||||
template:
|
template:
|
||||||
metadata:
|
metadata:
|
||||||
labels:
|
labels:
|
||||||
app.kubernetes.io/instance: renovate
|
app.kubernetes.io/instance: renovate
|
||||||
app.kubernetes.io/name: renovate
|
app.kubernetes.io/name: renovate
|
||||||
app.kubernetes.io/version: "43.209.3"
|
app.kubernetes.io/version: "43.197.0"
|
||||||
annotations:
|
annotations:
|
||||||
# Renovate uses plain X.Y.Z semver tags (no -slim suffix anymore)
|
# Renovate uses plain X.Y.Z semver tags (no -slim suffix anymore)
|
||||||
match-regex.version-checker.io/renovate: '^\d+\.\d+\.\d+$'
|
match-regex.version-checker.io/renovate: '^\d+\.\d+\.\d+$'
|
||||||
@@ -209,7 +138,7 @@ spec:
|
|||||||
restartPolicy: OnFailure
|
restartPolicy: OnFailure
|
||||||
containers:
|
containers:
|
||||||
- name: renovate
|
- name: renovate
|
||||||
image: renovate/renovate:43.209.3
|
image: renovate/renovate:43.197.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
envFrom:
|
envFrom:
|
||||||
- secretRef:
|
- secretRef:
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ spec:
|
|||||||
dnsPolicy: ClusterFirstWithHostNet
|
dnsPolicy: ClusterFirstWithHostNet
|
||||||
containers:
|
containers:
|
||||||
- name: tailscale
|
- name: tailscale
|
||||||
image: tailscale/tailscale:v1.98.4
|
image: tailscale/tailscale:v1.94.1
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: TZ
|
- name: TZ
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: redis
|
- name: redis
|
||||||
image: redis:8.8-alpine
|
image: redis:7.2-alpine
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 6379
|
- containerPort: 6379
|
||||||
name: redis
|
name: redis
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: redis
|
- name: redis
|
||||||
image: redis:8-alpine
|
image: redis:7-alpine
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
args:
|
args:
|
||||||
- redis-server
|
- redis-server
|
||||||
|
|||||||
@@ -175,7 +175,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: bookstack
|
- name: bookstack
|
||||||
image: linuxserver/bookstack:26.05.20260601
|
image: linuxserver/bookstack:25.12.20251224
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
# LinuxServer.io specific
|
# LinuxServer.io specific
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ spec:
|
|||||||
fsGroup: 1000
|
fsGroup: 1000
|
||||||
containers:
|
containers:
|
||||||
- name: code-server
|
- name: code-server
|
||||||
image: codercom/code-server:4.123.0
|
image: codercom/code-server:4.121.0
|
||||||
args:
|
args:
|
||||||
- --bind-addr=0.0.0.0:8080
|
- --bind-addr=0.0.0.0:8080
|
||||||
- --auth=none
|
- --auth=none
|
||||||
|
|||||||
@@ -169,7 +169,7 @@ spec:
|
|||||||
type: RuntimeDefault
|
type: RuntimeDefault
|
||||||
containers:
|
containers:
|
||||||
- name: reloader
|
- name: reloader
|
||||||
image: ghcr.io/stakater/reloader:v1.4.17
|
image: ghcr.io/stakater/reloader:v1.4.12
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: GOMAXPROCS
|
- name: GOMAXPROCS
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ replicaCount: 1
|
|||||||
# Image configuration (optional - use defaults)
|
# Image configuration (optional - use defaults)
|
||||||
image:
|
image:
|
||||||
repository: ghcr.io/cloudnative-pg/cloudnative-pg
|
repository: ghcr.io/cloudnative-pg/cloudnative-pg
|
||||||
tag: 1.29.1
|
tag: 1.28.1
|
||||||
|
|
||||||
# Service configuration
|
# Service configuration
|
||||||
service:
|
service:
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ spec:
|
|||||||
fsGroup: 999
|
fsGroup: 999
|
||||||
containers:
|
containers:
|
||||||
- name: healthchecks
|
- name: healthchecks
|
||||||
image: healthchecks/healthchecks:v4.2
|
image: healthchecks/healthchecks:v4.0
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8000
|
- containerPort: 8000
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -187,7 +187,7 @@ spec:
|
|||||||
cpu: "50m"
|
cpu: "50m"
|
||||||
containers:
|
containers:
|
||||||
- name: umami
|
- name: umami
|
||||||
image: ghcr.io/umami-software/umami:postgresql-v1.38.0
|
image: ghcr.io/umami-software/umami:postgresql-latest
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 3000
|
- containerPort: 3000
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: filebrowser
|
- name: filebrowser
|
||||||
image: filebrowser/filebrowser:v2.63.13
|
image: filebrowser/filebrowser:v2-alpine
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8080
|
- containerPort: 8080
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ spec:
|
|||||||
mountPath: /data
|
mountPath: /data
|
||||||
containers:
|
containers:
|
||||||
- name: gitea
|
- name: gitea
|
||||||
image: gitea/gitea:1.26.2
|
image: gitea/gitea:1.25.4
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: USER_UID
|
- name: USER_UID
|
||||||
|
|||||||
@@ -2746,7 +2746,7 @@ spec:
|
|||||||
fsGroup: 1000
|
fsGroup: 1000
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: build-bookmarks-index
|
- name: build-bookmarks-index
|
||||||
image: mikefarah/yq:4.53.2
|
image: mikefarah/yq:4.50.1
|
||||||
securityContext:
|
securityContext:
|
||||||
runAsUser: 1000
|
runAsUser: 1000
|
||||||
runAsGroup: 1000
|
runAsGroup: 1000
|
||||||
|
|||||||
@@ -1372,7 +1372,7 @@ spec:
|
|||||||
fsGroup: 1000
|
fsGroup: 1000
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: build-bookmarks-index
|
- name: build-bookmarks-index
|
||||||
image: mikefarah/yq:4.53.2
|
image: mikefarah/yq:4.50.1
|
||||||
securityContext:
|
securityContext:
|
||||||
runAsUser: 1000
|
runAsUser: 1000
|
||||||
runAsGroup: 1000
|
runAsGroup: 1000
|
||||||
|
|||||||
@@ -258,7 +258,7 @@ spec:
|
|||||||
automountServiceAccountToken: true
|
automountServiceAccountToken: true
|
||||||
containers:
|
containers:
|
||||||
- name: headlamp
|
- name: headlamp
|
||||||
image: ghcr.io/headlamp-k8s/headlamp:v0.42.0
|
image: ghcr.io/headlamp-k8s/headlamp:v0.40.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
args:
|
args:
|
||||||
- "-in-cluster"
|
- "-in-cluster"
|
||||||
|
|||||||
@@ -42,5 +42,5 @@ rbac:
|
|||||||
# Image configuration
|
# Image configuration
|
||||||
image:
|
image:
|
||||||
repository: registry.k8s.io/external-dns/external-dns
|
repository: registry.k8s.io/external-dns/external-dns
|
||||||
tag: v0.21.0
|
tag: v0.19.0
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|||||||
@@ -1,11 +1,4 @@
|
|||||||
---
|
---
|
||||||
# Image tag override: bumps pihole/pihole to 2026.05.0 without changing
|
|
||||||
# the chart version. The 2026.05.0 release bundles FTL v6.6.2 which
|
|
||||||
# imports 6 upstream dnsmasq CVE fixes (covering the dnsmasq 2.92/2.93
|
|
||||||
# disclosures). No FTL-side config or API changes per the release notes.
|
|
||||||
# https://github.com/pi-hole/docker-pi-hole/releases/tag/2026.05.0
|
|
||||||
image:
|
|
||||||
tag: "2026.05.0"
|
|
||||||
DNS1: "1.1.1.1" # Cloudflare
|
DNS1: "1.1.1.1" # Cloudflare
|
||||||
DNS2: "8.8.8.8" # Google
|
DNS2: "8.8.8.8" # Google
|
||||||
DNS3: "9.9.9.9" #Quad9
|
DNS3: "9.9.9.9" #Quad9
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ image:
|
|||||||
registry: index.docker.io
|
registry: index.docker.io
|
||||||
repository: plexinc/pms-docker
|
repository: plexinc/pms-docker
|
||||||
# renovate: datasource=custom.plex depName=plex versioning=loose
|
# renovate: datasource=custom.plex depName=plex versioning=loose
|
||||||
tag: "1.43.2.10687-563d026ea"
|
tag: "1.43.0.10467-2b1ba6e69"
|
||||||
sha: ""
|
sha: ""
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
@@ -123,7 +123,7 @@ initContainer:
|
|||||||
registry: index.docker.io
|
registry: index.docker.io
|
||||||
repository: alpine
|
repository: alpine
|
||||||
# -- If unset use latest
|
# -- If unset use latest
|
||||||
tag: "3.23"
|
tag: "3.22"
|
||||||
sha: ""
|
sha: ""
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
@@ -181,7 +181,7 @@ rclone:
|
|||||||
registry: index.docker.io
|
registry: index.docker.io
|
||||||
repository: rclone/rclone
|
repository: rclone/rclone
|
||||||
# -- If unset use latest
|
# -- If unset use latest
|
||||||
tag: 1.74.3
|
tag: 1.70.3
|
||||||
sha: ""
|
sha: ""
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
@@ -235,10 +235,7 @@ statefulSet:
|
|||||||
annotations: {}
|
annotations: {}
|
||||||
# -- Optional extra annotations to add to the pods in the statefulset
|
# -- Optional extra annotations to add to the pods in the statefulset
|
||||||
podAnnotations:
|
podAnnotations:
|
||||||
# Match only `<X.Y.Z.B>-<short-hash>` (the amd64/native tag form) and exclude
|
match-regex.version-checker.io/plex-plex-media-server-pms: ^\d+\.\d+\.\d+\.\d+-.*$
|
||||||
# per-arch tags (e.g. `-armhf`, `-arm64`) so version-checker doesn't show an
|
|
||||||
# ARM tag as "newer" than our x86_64 install.
|
|
||||||
match-regex.version-checker.io/plex-plex-media-server-pms: '^\d+\.\d+\.\d+\.\d+-[a-f0-9]+$'
|
|
||||||
|
|
||||||
service:
|
service:
|
||||||
type: LoadBalancer
|
type: LoadBalancer
|
||||||
|
|||||||
@@ -372,7 +372,7 @@ spec:
|
|||||||
enableServiceLinks: true
|
enableServiceLinks: true
|
||||||
containers:
|
containers:
|
||||||
- name: homepage
|
- name: homepage
|
||||||
image: ghcr.io/gethomepage/homepage:v1.13.1
|
image: ghcr.io/gethomepage/homepage:v1.10.1
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
# Required for external access
|
# Required for external access
|
||||||
|
|||||||
@@ -535,7 +535,7 @@ spec:
|
|||||||
enableServiceLinks: true
|
enableServiceLinks: true
|
||||||
containers:
|
containers:
|
||||||
- name: homepage
|
- name: homepage
|
||||||
image: ghcr.io/gethomepage/homepage:v1.13.1
|
image: ghcr.io/gethomepage/homepage:v1.10.1
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
# Required for external access
|
# Required for external access
|
||||||
|
|||||||
@@ -241,7 +241,7 @@ spec:
|
|||||||
value: immich-valkey
|
value: immich-valkey
|
||||||
- name: TRANSFORMERS_CACHE
|
- name: TRANSFORMERS_CACHE
|
||||||
value: /cache
|
value: /cache
|
||||||
image: ghcr.io/immich-app/immich-machine-learning:v2.7.5
|
image: ghcr.io/immich-app/immich-machine-learning:v2.5.5
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
failureThreshold: 3
|
failureThreshold: 3
|
||||||
@@ -336,7 +336,7 @@ spec:
|
|||||||
value: http://immich-machine-learning:3003
|
value: http://immich-machine-learning:3003
|
||||||
- name: REDIS_HOSTNAME
|
- name: REDIS_HOSTNAME
|
||||||
value: immich-valkey
|
value: immich-valkey
|
||||||
image: ghcr.io/immich-app/immich-server:v2.7.5
|
image: ghcr.io/immich-app/immich-server:v2.5.5
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
failureThreshold: 3
|
failureThreshold: 3
|
||||||
@@ -416,7 +416,7 @@ spec:
|
|||||||
value: http://immich-machine-learning:3003
|
value: http://immich-machine-learning:3003
|
||||||
- name: REDIS_HOSTNAME
|
- name: REDIS_HOSTNAME
|
||||||
value: immich-valkey
|
value: immich-valkey
|
||||||
image: docker.io/valkey/valkey:9.1-alpine@sha256:a35428eba9043cc0b79dbe54100f0c92784f2de00ad09b01182bfb1c5c83d1bd
|
image: docker.io/valkey/valkey:9.0-alpine@sha256:d1cc70645bbcef743615463a2fa4616e841407545e18f560aed0c49671a90147
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
exec:
|
exec:
|
||||||
|
|||||||
@@ -185,7 +185,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: redis
|
- name: redis
|
||||||
image: redis:8-alpine
|
image: redis:7-alpine
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
args:
|
args:
|
||||||
- redis-server
|
- redis-server
|
||||||
|
|||||||
@@ -136,7 +136,7 @@ spec:
|
|||||||
fsGroup: 1000
|
fsGroup: 1000
|
||||||
containers:
|
containers:
|
||||||
- name: filebrowser
|
- name: filebrowser
|
||||||
image: gtstef/filebrowser:1.3.3-stable
|
image: gtstef/filebrowser:1.1.2-stable
|
||||||
env:
|
env:
|
||||||
- name: TZ
|
- name: TZ
|
||||||
value: "Europe/Budapest"
|
value: "Europe/Budapest"
|
||||||
|
|||||||
@@ -348,7 +348,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: prometheus
|
- name: prometheus
|
||||||
image: prom/prometheus:v3.12.0
|
image: prom/prometheus:v3.9.1
|
||||||
args:
|
args:
|
||||||
- --config.file=/etc/prometheus/prometheus.yml
|
- --config.file=/etc/prometheus/prometheus.yml
|
||||||
- --storage.tsdb.path=/prometheus
|
- --storage.tsdb.path=/prometheus
|
||||||
@@ -529,7 +529,7 @@ spec:
|
|||||||
runAsGroup: 472
|
runAsGroup: 472
|
||||||
containers:
|
containers:
|
||||||
- name: grafana
|
- name: grafana
|
||||||
image: grafana/grafana:13.0.2
|
image: grafana/grafana:12.3.2
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 3000
|
- containerPort: 3000
|
||||||
name: http
|
name: http
|
||||||
|
|||||||
@@ -392,13 +392,10 @@ spec:
|
|||||||
nextcloud-config-hash: 06b49913be13b1f9a81745166dd75ada59e7ddd39e8f6a2c5538affe2a6d1093
|
nextcloud-config-hash: 06b49913be13b1f9a81745166dd75ada59e7ddd39e8f6a2c5538affe2a6d1093
|
||||||
php-config-hash: 5a497358af870e06b42325eee83d7c0e5466b7f6819cb49b598559d96def7428
|
php-config-hash: 5a497358af870e06b42325eee83d7c0e5466b7f6819cb49b598559d96def7428
|
||||||
hooks-hash: 44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a
|
hooks-hash: 44136fa355b3678a1146ad16f7e8649e94fb4fc21fe77e8310c060f61caaff8a
|
||||||
# Only match the `X.Y.Z-apache` variant tags so version-checker doesn't
|
|
||||||
# treat the bare `X.Y.Z` server tag as a "newer" version of our apache image.
|
|
||||||
match-regex.version-checker.io/nextcloud: '^\d+\.\d+\.\d+-apache$'
|
|
||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: nextcloud
|
- name: nextcloud
|
||||||
image: docker.io/library/nextcloud:33.0.5-apache
|
image: docker.io/library/nextcloud:32.0.10-apache
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: SMTP_HOST
|
- name: SMTP_HOST
|
||||||
@@ -555,7 +552,7 @@ spec:
|
|||||||
failureThreshold: 3
|
failureThreshold: 3
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: postgresql-isready
|
- name: postgresql-isready
|
||||||
image: docker.io/bitnamilegacy/postgresql:17.6.0-debian-12-r3
|
image: docker.io/bitnamilegacy/postgresql:17.5.0-debian-12-r3
|
||||||
resources: {}
|
resources: {}
|
||||||
securityContext: {}
|
securityContext: {}
|
||||||
env:
|
env:
|
||||||
@@ -640,7 +637,7 @@ spec:
|
|||||||
hostIPC: false
|
hostIPC: false
|
||||||
containers:
|
containers:
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
image: docker.io/bitnamilegacy/postgresql:17.6.0-debian-12-r3
|
image: docker.io/bitnamilegacy/postgresql:17.5.0-debian-12-r3
|
||||||
imagePullPolicy: "IfNotPresent"
|
imagePullPolicy: "IfNotPresent"
|
||||||
securityContext:
|
securityContext:
|
||||||
allowPrivilegeEscalation: false
|
allowPrivilegeEscalation: false
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: onlyoffice
|
- name: onlyoffice
|
||||||
image: onlyoffice/documentserver:9.4.0
|
image: onlyoffice/documentserver:9.0.2
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: TZ
|
- name: TZ
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ spec:
|
|||||||
initContainers:
|
initContainers:
|
||||||
# Configure proxy auth in database before starting
|
# Configure proxy auth in database before starting
|
||||||
- name: configure-auth
|
- name: configure-auth
|
||||||
image: filebrowser/filebrowser:v2.63.13
|
image: filebrowser/filebrowser:v2.54.0
|
||||||
command:
|
command:
|
||||||
- sh
|
- sh
|
||||||
- -c
|
- -c
|
||||||
@@ -109,7 +109,7 @@ spec:
|
|||||||
runAsGroup: 1001
|
runAsGroup: 1001
|
||||||
containers:
|
containers:
|
||||||
- name: filebrowser
|
- name: filebrowser
|
||||||
image: filebrowser/filebrowser:v2.63.13
|
image: filebrowser/filebrowser:v2.54.0
|
||||||
command:
|
command:
|
||||||
- filebrowser
|
- filebrowser
|
||||||
- --database=/config/filebrowser.db
|
- --database=/config/filebrowser.db
|
||||||
|
|||||||
@@ -31,7 +31,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: outline
|
- name: outline
|
||||||
image: outlinewiki/outline:1.8.0
|
image: outlinewiki/outline:1.4.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: NODE_ENV
|
- name: NODE_ENV
|
||||||
@@ -198,7 +198,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: redis
|
- name: redis
|
||||||
image: redis:8-alpine
|
image: redis:7-alpine
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
command:
|
command:
|
||||||
- redis-server
|
- redis-server
|
||||||
|
|||||||
@@ -71,7 +71,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: redis
|
- name: redis
|
||||||
image: redis:8-alpine
|
image: redis:7-alpine
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
ports:
|
ports:
|
||||||
- name: redis
|
- name: redis
|
||||||
@@ -158,7 +158,7 @@ spec:
|
|||||||
enableServiceLinks: false
|
enableServiceLinks: false
|
||||||
containers:
|
containers:
|
||||||
- name: paperless
|
- name: paperless
|
||||||
image: ghcr.io/paperless-ngx/paperless-ngx:2.20.15
|
image: ghcr.io/paperless-ngx/paperless-ngx:2.20.6
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
# Database - using shared PostgreSQL in database-system namespace
|
# Database - using shared PostgreSQL in database-system namespace
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: mysql
|
- name: mysql
|
||||||
image: mysql:8.4
|
image: mysql:8.0
|
||||||
env:
|
env:
|
||||||
- name: MYSQL_ROOT_PASSWORD
|
- name: MYSQL_ROOT_PASSWORD
|
||||||
valueFrom:
|
valueFrom:
|
||||||
@@ -121,7 +121,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: redis
|
- name: redis
|
||||||
image: redis:8.8.0
|
image: redis:7.2.1
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 6379
|
- containerPort: 6379
|
||||||
name: redis
|
name: redis
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: prowlarr
|
- name: prowlarr
|
||||||
image: linuxserver/prowlarr:version-2.3.5.5327
|
image: linuxserver/prowlarr:version-2.3.0.5236
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: PUID
|
- name: PUID
|
||||||
@@ -91,7 +91,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: radarr
|
- name: radarr
|
||||||
image: linuxserver/radarr:version-6.1.1.10360
|
image: linuxserver/radarr:version-6.0.4.10291
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: PUID
|
- name: PUID
|
||||||
@@ -164,7 +164,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: sonarr
|
- name: sonarr
|
||||||
image: linuxserver/sonarr:version-4.0.17.2952
|
image: linuxserver/sonarr:version-4.0.16.2944
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: PUID
|
- name: PUID
|
||||||
@@ -244,7 +244,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: qbittorrent
|
- name: qbittorrent
|
||||||
image: linuxserver/qbittorrent:5.2.1
|
image: linuxserver/qbittorrent:5.1.4
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: PUID
|
- name: PUID
|
||||||
@@ -705,7 +705,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: radarr
|
- name: radarr
|
||||||
image: linuxserver/radarr:version-6.1.1.10360
|
image: linuxserver/radarr:version-6.0.4.10291
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: PUID
|
- name: PUID
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: create-superuser
|
- name: create-superuser
|
||||||
image: vabene1111/recipes:2.6.9
|
image: vabene1111/recipes:2.5
|
||||||
workingDir: /opt/recipes
|
workingDir: /opt/recipes
|
||||||
command:
|
command:
|
||||||
- /bin/sh
|
- /bin/sh
|
||||||
@@ -106,7 +106,7 @@ spec:
|
|||||||
key: email
|
key: email
|
||||||
containers:
|
containers:
|
||||||
- name: tandoor
|
- name: tandoor
|
||||||
image: vabene1111/recipes:2.6.9
|
image: vabene1111/recipes:2.5
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: TZ
|
- name: TZ
|
||||||
|
|||||||
@@ -41,11 +41,8 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: termix
|
- name: termix
|
||||||
# NOTE: termix uses a non-semver tag pattern (release-X.Y.Z).
|
# renovate: datasource=github-releases depName=Termix-SSH/Termix versioning=loose extractVersion=^release-(?<version>.+)$
|
||||||
# Renovate handles it via a customManagers regex defined in
|
image: ghcr.io/lukegus/termix:release-1.11.0
|
||||||
# admin-system/renovate.yaml (the kubernetes manager doesn't
|
|
||||||
# process inline `# renovate:` comments).
|
|
||||||
image: ghcr.io/lukegus/termix:release-2.3.2
|
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: uptimekuma
|
- name: uptimekuma
|
||||||
image: louislam/uptime-kuma:2.4.0
|
image: louislam/uptime-kuma:2.3.2
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: TZ
|
- name: TZ
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: vaultwarden
|
- name: vaultwarden
|
||||||
image: vaultwarden/server:1.36.0
|
image: vaultwarden/server:1.35.2
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: TZ
|
- name: TZ
|
||||||
|
|||||||
+3
-3
@@ -130,7 +130,7 @@ spec:
|
|||||||
initContainers:
|
initContainers:
|
||||||
# Configure proxy auth in database before starting
|
# Configure proxy auth in database before starting
|
||||||
- name: configure-auth
|
- name: configure-auth
|
||||||
image: filebrowser/filebrowser:v2.63.13
|
image: filebrowser/filebrowser:v2.54.0
|
||||||
command:
|
command:
|
||||||
- sh
|
- sh
|
||||||
- -c
|
- -c
|
||||||
@@ -151,7 +151,7 @@ spec:
|
|||||||
runAsGroup: 1000
|
runAsGroup: 1000
|
||||||
containers:
|
containers:
|
||||||
- name: filebrowser
|
- name: filebrowser
|
||||||
image: filebrowser/filebrowser:v2.63.13
|
image: filebrowser/filebrowser:v2.54.0
|
||||||
command:
|
command:
|
||||||
- filebrowser
|
- filebrowser
|
||||||
- --database=/config/filebrowser.db
|
- --database=/config/filebrowser.db
|
||||||
@@ -324,7 +324,7 @@ spec:
|
|||||||
runAsUser: 0
|
runAsUser: 0
|
||||||
containers:
|
containers:
|
||||||
- name: nginx
|
- name: nginx
|
||||||
image: nginx:1.31-alpine
|
image: nginx:1.27-alpine
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8080
|
- containerPort: 8080
|
||||||
name: http
|
name: http
|
||||||
|
|||||||
Reference in New Issue
Block a user