Compare commits
14 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c5bbe3d17f | |||
| a2686fac96 | |||
| 9214a4dde2 | |||
| a52f8ccf8d | |||
| fbe9eeec21 | |||
| fc1df98503 | |||
| e4b36e7822 | |||
| 6b2f69feaa | |||
| 03b8af9b78 | |||
| b98a0928cd | |||
| c9bc5cadc4 | |||
| a8610dc27e | |||
| 2b260bc2eb | |||
| 8b4b0df92c |
@@ -30,7 +30,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: actualbudget
|
||||
image: actualbudget/actual-server:26.2.0
|
||||
image: actualbudget/actual-server:26.6.0
|
||||
imagePullPolicy: IfNotPresent
|
||||
env:
|
||||
- name: TZ
|
||||
|
||||
+23
-10
@@ -44,12 +44,26 @@ data:
|
||||
"requireConfig": "optional",
|
||||
"dependencyDashboard": true,
|
||||
"dependencyDashboardTitle": "Renovate Dependency Dashboard",
|
||||
"prHourlyLimit": 8,
|
||||
"prConcurrentLimit": 8,
|
||||
"enabledManagers": ["kubernetes", "helm-values"],
|
||||
"prHourlyLimit": 16,
|
||||
"prConcurrentLimit": 16,
|
||||
"enabledManagers": ["kubernetes", "helm-values", "custom.regex"],
|
||||
"kubernetes": {
|
||||
"managerFilePatterns": ["/.+\\.ya?ml$/"]
|
||||
},
|
||||
"customManagers": [
|
||||
{
|
||||
"description": "termix uses a release-X.Y.Z prefixed tag that the kubernetes manager's docker-versioning pre-check rejects (so no PRs are ever created). This customManager extracts the image directly, redirects the version lookup to GitHub Releases at Termix-SSH/Termix (which exposes timestamps the 3-day stability gate needs), and uses extractVersion to strip the `release-` prefix so loose semver can parse it.",
|
||||
"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": "loose",
|
||||
"extractVersionTemplate": "^release-(?<version>.+)$"
|
||||
}
|
||||
],
|
||||
"packageRules": [
|
||||
{
|
||||
"description": "All apps: 3-day stability gate before any PR opens",
|
||||
@@ -90,17 +104,16 @@ data:
|
||||
],
|
||||
"automerge": false
|
||||
},
|
||||
{
|
||||
"description": "termix: use github-releases as datasource (ghcr.io OCI manifest for this image lacks the release timestamp Renovate needs for the stability gate; GitHub Releases at Termix-SSH/Termix expose proper timestamps so the 3-day gate works as intended). regex versioning parses the release-X.Y.Z prefix. Renovate still writes the new tag to the same ghcr.io/lukegus/termix image (the registry hosts every release).",
|
||||
"matchPackageNames": ["ghcr.io/lukegus/termix"],
|
||||
"datasource": "github-releases",
|
||||
"packageName": "Termix-SSH/Termix",
|
||||
"versioning": "regex:^release-(?<major>\\d+)\\.(?<minor>\\d+)\\.(?<patch>\\d+)$"
|
||||
},
|
||||
{
|
||||
"description": "wanderer: db + web update together in one PR",
|
||||
"matchPackageNames": ["flomp/wanderer-db", "flomp/wanderer-web"],
|
||||
"groupName": "wanderer"
|
||||
},
|
||||
{
|
||||
"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
|
||||
}
|
||||
],
|
||||
"labels": ["renovate"]
|
||||
|
||||
@@ -96,7 +96,7 @@ spec:
|
||||
fsGroup: 1000
|
||||
initContainers:
|
||||
- name: init-config
|
||||
image: busybox:1.36
|
||||
image: busybox:1.38
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
|
||||
@@ -168,7 +168,7 @@ spec:
|
||||
initContainers:
|
||||
# Wait for PostgreSQL
|
||||
- name: wait-for-db
|
||||
image: busybox:1.36
|
||||
image: busybox:1.38
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
@@ -181,7 +181,7 @@ spec:
|
||||
echo "PostgreSQL is ready!"
|
||||
# Wait for Redis
|
||||
- name: wait-for-redis
|
||||
image: busybox:1.36
|
||||
image: busybox:1.38
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
|
||||
@@ -32,7 +32,7 @@ spec:
|
||||
spec:
|
||||
initContainers:
|
||||
- name: init-directories
|
||||
image: busybox:1.36
|
||||
image: busybox:1.38
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
|
||||
@@ -416,7 +416,7 @@ spec:
|
||||
value: http://immich-machine-learning:3003
|
||||
- name: REDIS_HOSTNAME
|
||||
value: immich-valkey
|
||||
image: docker.io/valkey/valkey:9.0-alpine@sha256:b4ee67d73e00393e712accc72cfd7003b87d0fcd63f0eba798b23251bfc9c394
|
||||
image: docker.io/valkey/valkey:9.0-alpine@sha256:d1cc70645bbcef743615463a2fa4616e841407545e18f560aed0c49671a90147
|
||||
imagePullPolicy: IfNotPresent
|
||||
livenessProbe:
|
||||
exec:
|
||||
|
||||
@@ -282,7 +282,7 @@ spec:
|
||||
spec:
|
||||
initContainers:
|
||||
- name: wait-for-db
|
||||
image: busybox:1.36
|
||||
image: busybox:1.38
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
@@ -294,7 +294,7 @@ spec:
|
||||
done
|
||||
echo "PostgreSQL is ready!"
|
||||
- name: wait-for-redis
|
||||
image: busybox:1.36
|
||||
image: busybox:1.38
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
@@ -584,7 +584,7 @@ spec:
|
||||
initContainers:
|
||||
# 1. Wait for PostgreSQL to accept connections
|
||||
- name: wait-for-db
|
||||
image: busybox:1.36
|
||||
image: busybox:1.38
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
@@ -597,7 +597,7 @@ spec:
|
||||
echo "PostgreSQL is ready!"
|
||||
# 2. Wait for Redis to accept connections
|
||||
- name: wait-for-redis
|
||||
image: busybox:1.36
|
||||
image: busybox:1.38
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
@@ -612,7 +612,7 @@ spec:
|
||||
# Prevents the worker from picking up stale queued jobs
|
||||
# before schema migrations have been applied.
|
||||
- name: wait-for-api
|
||||
image: busybox:1.36
|
||||
image: busybox:1.38
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
|
||||
@@ -395,7 +395,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: nextcloud
|
||||
image: docker.io/library/nextcloud:32.0.2-apache
|
||||
image: docker.io/library/nextcloud:32.0.10-apache
|
||||
imagePullPolicy: IfNotPresent
|
||||
env:
|
||||
- name: SMTP_HOST
|
||||
|
||||
@@ -41,6 +41,10 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: termix
|
||||
# NOTE: termix uses a non-semver tag pattern (release-X.Y.Z).
|
||||
# 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.0
|
||||
imagePullPolicy: IfNotPresent
|
||||
ports:
|
||||
|
||||
@@ -122,7 +122,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: pocketbase
|
||||
image: flomp/wanderer-db:v0.19.1
|
||||
image: flomp/wanderer-db:v0.19.2
|
||||
env:
|
||||
- name: ORIGIN
|
||||
value: "https://wanderer.dooplex.hu"
|
||||
@@ -192,7 +192,7 @@ spec:
|
||||
spec:
|
||||
containers:
|
||||
- name: wanderer-web
|
||||
image: flomp/wanderer-web:v0.19.1
|
||||
image: flomp/wanderer-web:v0.19.2
|
||||
env:
|
||||
- name: NODE_TLS_REJECT_UNAUTHORIZED
|
||||
value: "0"
|
||||
|
||||
+1
-1
@@ -315,7 +315,7 @@ spec:
|
||||
initContainers:
|
||||
# Create public directory if it doesn't exist
|
||||
- name: init-public-dir
|
||||
image: busybox:1.36
|
||||
image: busybox:1.38
|
||||
command: ["sh", "-c", "mkdir -p /srv/public && chmod 755 /srv/public"]
|
||||
volumeMounts:
|
||||
- name: data
|
||||
|
||||
@@ -153,7 +153,7 @@ spec:
|
||||
fsGroup: 1000
|
||||
initContainers:
|
||||
- name: wait-for-db
|
||||
image: busybox:1.36
|
||||
image: busybox:1.38
|
||||
command:
|
||||
- sh
|
||||
- -c
|
||||
|
||||
Reference in New Issue
Block a user