Compare commits
36 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1d08156d81 | |||
| a8c657d554 | |||
| 9e020af94d | |||
| ec9ae43bee | |||
| e822b76982 | |||
| 876b044d0a | |||
| e459b0d262 | |||
| 99bbc31325 | |||
| fee5fafeb0 | |||
| 25c1baf1c3 | |||
| 184c469c51 | |||
| 6291423776 | |||
| d063513869 | |||
| 0cd8a3272d | |||
| 9de82b7295 | |||
| 1338bbb6ae | |||
| 789c75d253 | |||
| 3c37d283da | |||
| 6d46261dff | |||
| 82c397af2c | |||
| c0acfc338c | |||
| 7956ca930b | |||
| c5887cb6d6 | |||
| 2d5aca0df3 | |||
| 56f2622225 | |||
| a3525c7ab6 | |||
| e0550cbe54 | |||
| f3d0b7e404 | |||
| 8bc11a6db7 | |||
| 22d5c38bac | |||
| 8f29f9e645 | |||
| a2d69962ed | |||
| a993456653 | |||
| 56d39399d6 | |||
| a2e68c1745 | |||
| c7ec82eae0 |
@@ -62,6 +62,17 @@ data:
|
|||||||
"packageNameTemplate": "Termix-SSH/Termix",
|
"packageNameTemplate": "Termix-SSH/Termix",
|
||||||
"versioningTemplate": "regex:^release-(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)$",
|
"versioningTemplate": "regex:^release-(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)$",
|
||||||
"extractVersionTemplate": "^(?<version>release-\\d+\\.\\d+\\.\\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+)$"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"packageRules": [
|
"packageRules": [
|
||||||
@@ -109,11 +120,35 @@ data:
|
|||||||
"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.",
|
"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"],
|
"matchManagers": ["kubernetes"],
|
||||||
"matchPackageNames": ["ghcr.io/lukegus/termix"],
|
"matchPackageNames": ["ghcr.io/lukegus/termix"],
|
||||||
"enabled": false
|
"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
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"labels": ["renovate"]
|
"labels": ["renovate"]
|
||||||
@@ -127,7 +162,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.197.0"
|
app.kubernetes.io/version: "43.209.3"
|
||||||
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.
|
||||||
@@ -142,14 +177,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.197.0"
|
app.kubernetes.io/version: "43.209.3"
|
||||||
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.197.0"
|
app.kubernetes.io/version: "43.209.3"
|
||||||
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+$'
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: redis
|
- name: redis
|
||||||
image: redis:7.4-alpine
|
image: redis:8.8-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:7-alpine
|
image: redis:8-alpine
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
args:
|
args:
|
||||||
- redis-server
|
- redis-server
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ spec:
|
|||||||
fsGroup: 1000
|
fsGroup: 1000
|
||||||
containers:
|
containers:
|
||||||
- name: code-server
|
- name: code-server
|
||||||
image: codercom/code-server:4.122.1
|
image: codercom/code-server:4.123.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.12
|
image: ghcr.io/stakater/reloader:v1.4.17
|
||||||
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.28.1
|
tag: 1.29.1
|
||||||
|
|
||||||
# Service configuration
|
# Service configuration
|
||||||
service:
|
service:
|
||||||
|
|||||||
@@ -258,7 +258,7 @@ spec:
|
|||||||
automountServiceAccountToken: true
|
automountServiceAccountToken: true
|
||||||
containers:
|
containers:
|
||||||
- name: headlamp
|
- name: headlamp
|
||||||
image: ghcr.io/headlamp-k8s/headlamp:v0.40.0
|
image: ghcr.io/headlamp-k8s/headlamp:v0.42.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.19.0
|
tag: v0.21.0
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|||||||
@@ -1,4 +1,11 @@
|
|||||||
---
|
---
|
||||||
|
# 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
|
||||||
|
|||||||
@@ -235,7 +235,10 @@ 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-regex.version-checker.io/plex-plex-media-server-pms: ^\d+\.\d+\.\d+\.\d+-.*$
|
# Match only `<X.Y.Z.B>-<short-hash>` (the amd64/native tag form) and exclude
|
||||||
|
# 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.10.1
|
image: ghcr.io/gethomepage/homepage:v1.13.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.10.1
|
image: ghcr.io/gethomepage/homepage:v1.13.1
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
# Required for external access
|
# Required for external access
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ spec:
|
|||||||
fsGroup: 999
|
fsGroup: 999
|
||||||
containers:
|
containers:
|
||||||
- name: postgres
|
- name: postgres
|
||||||
image: ghcr.io/immich-app/postgres:17-vectorchord0.3.0
|
image: ghcr.io/immich-app/postgres:16-vectorchord0.3.0
|
||||||
env:
|
env:
|
||||||
- name: POSTGRES_USER
|
- name: POSTGRES_USER
|
||||||
valueFrom:
|
valueFrom:
|
||||||
@@ -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.5.5
|
image: ghcr.io/immich-app/immich-machine-learning:v2.7.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.5.5
|
image: ghcr.io/immich-app/immich-server:v2.7.5
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
failureThreshold: 3
|
failureThreshold: 3
|
||||||
|
|||||||
@@ -185,7 +185,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: redis
|
- name: redis
|
||||||
image: redis:7-alpine
|
image: redis:8-alpine
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
args:
|
args:
|
||||||
- redis-server
|
- redis-server
|
||||||
|
|||||||
@@ -529,7 +529,7 @@ spec:
|
|||||||
runAsGroup: 472
|
runAsGroup: 472
|
||||||
containers:
|
containers:
|
||||||
- name: grafana
|
- name: grafana
|
||||||
image: grafana/grafana:12.4.4
|
image: grafana/grafana:13.0.2
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 3000
|
- containerPort: 3000
|
||||||
name: http
|
name: http
|
||||||
|
|||||||
@@ -392,10 +392,13 @@ 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.4-apache
|
image: docker.io/library/nextcloud:33.0.5-apache
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: SMTP_HOST
|
- name: SMTP_HOST
|
||||||
|
|||||||
@@ -198,7 +198,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: redis
|
- name: redis
|
||||||
image: redis:7-alpine
|
image: redis:8-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:7-alpine
|
image: redis:8-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.6
|
image: ghcr.io/paperless-ngx/paperless-ngx:2.20.15
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
# Database - using shared PostgreSQL in database-system namespace
|
# Database - using shared PostgreSQL in database-system namespace
|
||||||
|
|||||||
@@ -121,7 +121,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: redis
|
- name: redis
|
||||||
image: redis:7.4.9
|
image: redis:8.8.0
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 6379
|
- containerPort: 6379
|
||||||
name: redis
|
name: redis
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ spec:
|
|||||||
# Renovate handles it via a customManagers regex defined in
|
# Renovate handles it via a customManagers regex defined in
|
||||||
# admin-system/renovate.yaml (the kubernetes manager doesn't
|
# admin-system/renovate.yaml (the kubernetes manager doesn't
|
||||||
# process inline `# renovate:` comments).
|
# process inline `# renovate:` comments).
|
||||||
image: ghcr.io/lukegus/termix:release-1.11.0
|
image: ghcr.io/lukegus/termix:release-2.3.2
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: meilisearch
|
- name: meilisearch
|
||||||
image: getmeili/meilisearch:v1.45.2
|
image: getmeili/meilisearch:v1.11.3
|
||||||
env:
|
env:
|
||||||
- name: MEILI_MASTER_KEY
|
- name: MEILI_MASTER_KEY
|
||||||
valueFrom:
|
valueFrom:
|
||||||
|
|||||||
Reference in New Issue
Block a user