Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1d08156d81 | |||
| a8c657d554 | |||
| 9e020af94d | |||
| ec9ae43bee | |||
| e822b76982 | |||
| 876b044d0a | |||
| 99bbc31325 | |||
| fee5fafeb0 |
@@ -62,6 +62,17 @@ data:
|
||||
"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+)$"
|
||||
}
|
||||
],
|
||||
"packageRules": [
|
||||
@@ -128,6 +139,16 @@ data:
|
||||
"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
|
||||
}
|
||||
],
|
||||
"labels": ["renovate"]
|
||||
@@ -141,7 +162,7 @@ metadata:
|
||||
labels:
|
||||
app.kubernetes.io/instance: renovate
|
||||
app.kubernetes.io/name: renovate
|
||||
app.kubernetes.io/version: "43.197.0"
|
||||
app.kubernetes.io/version: "43.209.3"
|
||||
spec:
|
||||
# Sat 02:00 Europe/Budapest — leaves the full weekend for troubleshooting
|
||||
# if a Renovate-merged update breaks something.
|
||||
@@ -156,14 +177,14 @@ spec:
|
||||
labels:
|
||||
app.kubernetes.io/instance: renovate
|
||||
app.kubernetes.io/name: renovate
|
||||
app.kubernetes.io/version: "43.197.0"
|
||||
app.kubernetes.io/version: "43.209.3"
|
||||
spec:
|
||||
template:
|
||||
metadata:
|
||||
labels:
|
||||
app.kubernetes.io/instance: renovate
|
||||
app.kubernetes.io/name: renovate
|
||||
app.kubernetes.io/version: "43.197.0"
|
||||
app.kubernetes.io/version: "43.209.3"
|
||||
annotations:
|
||||
# Renovate uses plain X.Y.Z semver tags (no -slim suffix anymore)
|
||||
match-regex.version-checker.io/renovate: '^\d+\.\d+\.\d+$'
|
||||
|
||||
@@ -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
|
||||
DNS2: "8.8.8.8" # Google
|
||||
DNS3: "9.9.9.9" #Quad9
|
||||
|
||||
@@ -235,7 +235,10 @@ statefulSet:
|
||||
annotations: {}
|
||||
# -- Optional extra annotations to add to the pods in the statefulset
|
||||
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:
|
||||
type: LoadBalancer
|
||||
|
||||
@@ -392,10 +392,13 @@ spec:
|
||||
nextcloud-config-hash: 06b49913be13b1f9a81745166dd75ada59e7ddd39e8f6a2c5538affe2a6d1093
|
||||
php-config-hash: 5a497358af870e06b42325eee83d7c0e5466b7f6819cb49b598559d96def7428
|
||||
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:
|
||||
containers:
|
||||
- name: nextcloud
|
||||
image: docker.io/library/nextcloud:33.0.4-apache
|
||||
image: docker.io/library/nextcloud:33.0.5-apache
|
||||
imagePullPolicy: IfNotPresent
|
||||
env:
|
||||
- name: SMTP_HOST
|
||||
|
||||
@@ -45,7 +45,7 @@ spec:
|
||||
# Renovate handles it via a customManagers regex defined in
|
||||
# admin-system/renovate.yaml (the kubernetes manager doesn't
|
||||
# process inline `# renovate:` comments).
|
||||
image: ghcr.io/lukegus/termix:release-1.11.2
|
||||
image: ghcr.io/lukegus/termix:release-2.3.2
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
- name: http
|
||||
|
||||
Reference in New Issue
Block a user