Compare commits
61 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c7ec82eae0 | |||
| df5afe1695 | |||
| c5bbe3d17f | |||
| 9d996ee0ec | |||
| b29db876d5 | |||
| 7ba27a7e4f | |||
| 0fb59899c9 | |||
| cb991b5d0c | |||
| 0c7f5b6291 | |||
| a261ff3e72 | |||
| 5c2dc27954 | |||
| f5cb8f48c6 | |||
| dee4f0fac3 | |||
| 9d7dff645a | |||
| fcc0bc5ef8 | |||
| be3c5e431e | |||
| 80dfd75227 | |||
| 9c72b0cab4 | |||
| 289d1ab763 | |||
| 23695bd9a4 | |||
| 1a52aca6db | |||
| 6ec9f6a0ae | |||
| fd97f14293 | |||
| 0c62b28210 | |||
| 6f82023155 | |||
| b73786871e | |||
| 0afa7d91e0 | |||
| 7af4092e32 | |||
| c19de989ce | |||
| 1810e40fb4 | |||
| 6013ea668c | |||
| 1233868f63 | |||
| 7658914ddb | |||
| 7aecce94a1 | |||
| f11126cac3 | |||
| 4431c44991 | |||
| c65cf19bd2 | |||
| c7ff367cdf | |||
| a2686fac96 | |||
| 9214a4dde2 | |||
| a52f8ccf8d | |||
| fbe9eeec21 | |||
| fc1df98503 | |||
| e4b36e7822 | |||
| 6b2f69feaa | |||
| 03b8af9b78 | |||
| b98a0928cd | |||
| c9bc5cadc4 | |||
| 51581714ed | |||
| a8610dc27e | |||
| ad449b9e72 | |||
| ddb2797b10 | |||
| 8b14b0e99e | |||
| 2b260bc2eb | |||
| d4f09f2cd9 | |||
| 8a807d3e5c | |||
| 8b4b0df92c | |||
| da1e8045d0 | |||
| fd73c41152 | |||
| b96703f2df | |||
| e147d829e7 |
@@ -30,7 +30,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: actualbudget
|
- name: actualbudget
|
||||||
image: actualbudget/actual-server:26.2.0
|
image: actualbudget/actual-server:26.6.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: TZ
|
- name: TZ
|
||||||
|
|||||||
+27
-12
@@ -6,7 +6,7 @@
|
|||||||
# -slim suffix was retired after v37.440.x, so we pin the plain tag)
|
# -slim suffix was retired after v37.440.x, so we pin the plain tag)
|
||||||
#
|
#
|
||||||
# PILOT SCOPE (intentionally narrow):
|
# PILOT SCOPE (intentionally narrow):
|
||||||
# Runs weekly (Sun 04:00 Europe/Budapest) as a CronJob and opens
|
# Runs weekly (Sat 02:00 Europe/Budapest) as a CronJob and opens
|
||||||
# dependency-update PRs against admin/homelab-manifests on Gitea.
|
# dependency-update PRs against admin/homelab-manifests on Gitea.
|
||||||
# Only the `kubernetes` and `helm-values` managers are enabled, and a
|
# Only the `kubernetes` and `helm-values` managers are enabled, and a
|
||||||
# default-deny packageRule limits updates to exactly four pilot images:
|
# default-deny packageRule limits updates to exactly four pilot images:
|
||||||
@@ -44,12 +44,26 @@ data:
|
|||||||
"requireConfig": "optional",
|
"requireConfig": "optional",
|
||||||
"dependencyDashboard": true,
|
"dependencyDashboard": true,
|
||||||
"dependencyDashboardTitle": "Renovate Dependency Dashboard",
|
"dependencyDashboardTitle": "Renovate Dependency Dashboard",
|
||||||
"prHourlyLimit": 8,
|
"prHourlyLimit": 16,
|
||||||
"prConcurrentLimit": 8,
|
"prConcurrentLimit": 16,
|
||||||
"enabledManagers": ["kubernetes", "helm-values"],
|
"enabledManagers": ["kubernetes", "helm-values", "custom.regex"],
|
||||||
"kubernetes": {
|
"kubernetes": {
|
||||||
"managerFilePatterns": ["/.+\\.ya?ml$/"]
|
"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": [
|
"packageRules": [
|
||||||
{
|
{
|
||||||
"description": "All apps: 3-day stability gate before any PR opens",
|
"description": "All apps: 3-day stability gate before any PR opens",
|
||||||
@@ -90,17 +104,16 @@ data:
|
|||||||
],
|
],
|
||||||
"automerge": false
|
"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",
|
"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": "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"]
|
"labels": ["renovate"]
|
||||||
@@ -116,7 +129,9 @@ metadata:
|
|||||||
app.kubernetes.io/name: renovate
|
app.kubernetes.io/name: renovate
|
||||||
app.kubernetes.io/version: "43.197.0"
|
app.kubernetes.io/version: "43.197.0"
|
||||||
spec:
|
spec:
|
||||||
schedule: "0 4 * * 0"
|
# Sat 02:00 Europe/Budapest — leaves the full weekend for troubleshooting
|
||||||
|
# if a Renovate-merged update breaks something.
|
||||||
|
schedule: "0 2 * * 6"
|
||||||
timeZone: "Europe/Budapest"
|
timeZone: "Europe/Budapest"
|
||||||
concurrencyPolicy: Forbid
|
concurrencyPolicy: Forbid
|
||||||
successfulJobsHistoryLimit: 3
|
successfulJobsHistoryLimit: 3
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: redis
|
- name: redis
|
||||||
image: redis:7.2-alpine
|
image: redis:7.4-alpine
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 6379
|
- containerPort: 6379
|
||||||
name: redis
|
name: redis
|
||||||
@@ -96,7 +96,7 @@ spec:
|
|||||||
fsGroup: 1000
|
fsGroup: 1000
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: init-config
|
- name: init-config
|
||||||
image: busybox:1.36
|
image: busybox:1.38
|
||||||
command:
|
command:
|
||||||
- sh
|
- sh
|
||||||
- -c
|
- -c
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: audiobookshelf
|
- name: audiobookshelf
|
||||||
image: advplyr/audiobookshelf:2.35.0
|
image: advplyr/audiobookshelf:2.35.1
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: TZ
|
- name: TZ
|
||||||
|
|||||||
@@ -168,7 +168,7 @@ spec:
|
|||||||
initContainers:
|
initContainers:
|
||||||
# Wait for PostgreSQL
|
# Wait for PostgreSQL
|
||||||
- name: wait-for-db
|
- name: wait-for-db
|
||||||
image: busybox:1.36
|
image: busybox:1.38
|
||||||
command:
|
command:
|
||||||
- sh
|
- sh
|
||||||
- -c
|
- -c
|
||||||
@@ -181,7 +181,7 @@ spec:
|
|||||||
echo "PostgreSQL is ready!"
|
echo "PostgreSQL is ready!"
|
||||||
# Wait for Redis
|
# Wait for Redis
|
||||||
- name: wait-for-redis
|
- name: wait-for-redis
|
||||||
image: busybox:1.36
|
image: busybox:1.38
|
||||||
command:
|
command:
|
||||||
- sh
|
- sh
|
||||||
- -c
|
- -c
|
||||||
|
|||||||
@@ -175,7 +175,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: bookstack
|
- name: bookstack
|
||||||
image: linuxserver/bookstack:25.12.3
|
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.121.0
|
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
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ spec:
|
|||||||
fsGroup: 999
|
fsGroup: 999
|
||||||
containers:
|
containers:
|
||||||
- name: healthchecks
|
- name: healthchecks
|
||||||
image: healthchecks/healthchecks:v4.0
|
image: healthchecks/healthchecks:v4.2
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8000
|
- containerPort: 8000
|
||||||
env:
|
env:
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: init-directories
|
- name: init-directories
|
||||||
image: busybox:1.36
|
image: busybox:1.38
|
||||||
command:
|
command:
|
||||||
- sh
|
- sh
|
||||||
- -c
|
- -c
|
||||||
|
|||||||
@@ -2746,7 +2746,7 @@ spec:
|
|||||||
fsGroup: 1000
|
fsGroup: 1000
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: build-bookmarks-index
|
- name: build-bookmarks-index
|
||||||
image: mikefarah/yq:4.50.1
|
image: mikefarah/yq:4.53.2
|
||||||
securityContext:
|
securityContext:
|
||||||
runAsUser: 1000
|
runAsUser: 1000
|
||||||
runAsGroup: 1000
|
runAsGroup: 1000
|
||||||
@@ -2787,7 +2787,7 @@ spec:
|
|||||||
mountPath: /app/assets
|
mountPath: /app/assets
|
||||||
containers:
|
containers:
|
||||||
- name: glance
|
- name: glance
|
||||||
image: glanceapp/glance:v0.8.4
|
image: glanceapp/glance:v0.8.5
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: TZ
|
- name: TZ
|
||||||
|
|||||||
@@ -1372,7 +1372,7 @@ spec:
|
|||||||
fsGroup: 1000
|
fsGroup: 1000
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: build-bookmarks-index
|
- name: build-bookmarks-index
|
||||||
image: mikefarah/yq:4.50.1
|
image: mikefarah/yq:4.53.2
|
||||||
securityContext:
|
securityContext:
|
||||||
runAsUser: 1000
|
runAsUser: 1000
|
||||||
runAsGroup: 1000
|
runAsGroup: 1000
|
||||||
@@ -1413,7 +1413,7 @@ spec:
|
|||||||
mountPath: /app/assets
|
mountPath: /app/assets
|
||||||
containers:
|
containers:
|
||||||
- name: glance
|
- name: glance
|
||||||
image: glanceapp/glance:v0.8.4
|
image: glanceapp/glance:v0.8.5
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: TZ
|
- name: TZ
|
||||||
|
|||||||
@@ -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.22"
|
tag: "3.23"
|
||||||
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.70.3
|
tag: 1.74.2
|
||||||
sha: ""
|
sha: ""
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
|
|||||||
@@ -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.0-alpine@sha256:b4ee67d73e00393e712accc72cfd7003b87d0fcd63f0eba798b23251bfc9c394
|
image: docker.io/valkey/valkey:9.1-alpine@sha256:a35428eba9043cc0b79dbe54100f0c92784f2de00ad09b01182bfb1c5c83d1bd
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
livenessProbe:
|
livenessProbe:
|
||||||
exec:
|
exec:
|
||||||
|
|||||||
@@ -282,7 +282,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: wait-for-db
|
- name: wait-for-db
|
||||||
image: busybox:1.36
|
image: busybox:1.38
|
||||||
command:
|
command:
|
||||||
- sh
|
- sh
|
||||||
- -c
|
- -c
|
||||||
@@ -294,7 +294,7 @@ spec:
|
|||||||
done
|
done
|
||||||
echo "PostgreSQL is ready!"
|
echo "PostgreSQL is ready!"
|
||||||
- name: wait-for-redis
|
- name: wait-for-redis
|
||||||
image: busybox:1.36
|
image: busybox:1.38
|
||||||
command:
|
command:
|
||||||
- sh
|
- sh
|
||||||
- -c
|
- -c
|
||||||
@@ -584,7 +584,7 @@ spec:
|
|||||||
initContainers:
|
initContainers:
|
||||||
# 1. Wait for PostgreSQL to accept connections
|
# 1. Wait for PostgreSQL to accept connections
|
||||||
- name: wait-for-db
|
- name: wait-for-db
|
||||||
image: busybox:1.36
|
image: busybox:1.38
|
||||||
command:
|
command:
|
||||||
- sh
|
- sh
|
||||||
- -c
|
- -c
|
||||||
@@ -597,7 +597,7 @@ spec:
|
|||||||
echo "PostgreSQL is ready!"
|
echo "PostgreSQL is ready!"
|
||||||
# 2. Wait for Redis to accept connections
|
# 2. Wait for Redis to accept connections
|
||||||
- name: wait-for-redis
|
- name: wait-for-redis
|
||||||
image: busybox:1.36
|
image: busybox:1.38
|
||||||
command:
|
command:
|
||||||
- sh
|
- sh
|
||||||
- -c
|
- -c
|
||||||
@@ -612,7 +612,7 @@ spec:
|
|||||||
# Prevents the worker from picking up stale queued jobs
|
# Prevents the worker from picking up stale queued jobs
|
||||||
# before schema migrations have been applied.
|
# before schema migrations have been applied.
|
||||||
- name: wait-for-api
|
- name: wait-for-api
|
||||||
image: busybox:1.36
|
image: busybox:1.38
|
||||||
command:
|
command:
|
||||||
- sh
|
- sh
|
||||||
- -c
|
- -c
|
||||||
|
|||||||
@@ -348,7 +348,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: prometheus
|
- name: prometheus
|
||||||
image: prom/prometheus:v3.9.1
|
image: prom/prometheus:v3.12.0
|
||||||
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:12.3.2
|
image: grafana/grafana:12.4.4
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 3000
|
- containerPort: 3000
|
||||||
name: http
|
name: http
|
||||||
|
|||||||
@@ -395,7 +395,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: nextcloud
|
- name: nextcloud
|
||||||
image: docker.io/library/nextcloud:32.0.2-apache
|
image: docker.io/library/nextcloud:32.0.10-apache
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: SMTP_HOST
|
- name: SMTP_HOST
|
||||||
@@ -552,7 +552,7 @@ spec:
|
|||||||
failureThreshold: 3
|
failureThreshold: 3
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: postgresql-isready
|
- name: postgresql-isready
|
||||||
image: docker.io/bitnamilegacy/postgresql:17.5.0-debian-12-r3
|
image: docker.io/bitnamilegacy/postgresql:17.6.0-debian-12-r3
|
||||||
resources: {}
|
resources: {}
|
||||||
securityContext: {}
|
securityContext: {}
|
||||||
env:
|
env:
|
||||||
@@ -637,7 +637,7 @@ spec:
|
|||||||
hostIPC: false
|
hostIPC: false
|
||||||
containers:
|
containers:
|
||||||
- name: postgresql
|
- name: postgresql
|
||||||
image: docker.io/bitnamilegacy/postgresql:17.5.0-debian-12-r3
|
image: docker.io/bitnamilegacy/postgresql:17.6.0-debian-12-r3
|
||||||
imagePullPolicy: "IfNotPresent"
|
imagePullPolicy: "IfNotPresent"
|
||||||
securityContext:
|
securityContext:
|
||||||
allowPrivilegeEscalation: false
|
allowPrivilegeEscalation: false
|
||||||
|
|||||||
@@ -0,0 +1,135 @@
|
|||||||
|
# BentoPDF - Privacy-focused PDF toolkit (all processing client-side, files never leave the server)
|
||||||
|
# https://www.bentopdf.com - image: ghcr.io/alam00000/bentopdf
|
||||||
|
# Domain: pdf.dooplex.hu
|
||||||
|
# Version: 2.8.5
|
||||||
|
# Database: None | Storage: None (stateless)
|
||||||
|
---
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: bentopdf
|
||||||
|
namespace: office-system
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: bentopdf
|
||||||
|
app.kubernetes.io/instance: bentopdf
|
||||||
|
app.kubernetes.io/version: "2.8.5"
|
||||||
|
spec:
|
||||||
|
replicas: 1
|
||||||
|
strategy:
|
||||||
|
type: Recreate
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app.kubernetes.io/name: bentopdf
|
||||||
|
app.kubernetes.io/instance: bentopdf
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: bentopdf
|
||||||
|
app.kubernetes.io/instance: bentopdf
|
||||||
|
app.kubernetes.io/version: "2.8.5"
|
||||||
|
annotations:
|
||||||
|
match-regex.version-checker.io/bentopdf: '^v\d+\.\d+\.\d+$'
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: bentopdf
|
||||||
|
image: ghcr.io/alam00000/bentopdf:v2.8.5
|
||||||
|
imagePullPolicy: IfNotPresent
|
||||||
|
env:
|
||||||
|
- name: TZ
|
||||||
|
value: "Europe/Budapest"
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
containerPort: 8080
|
||||||
|
protocol: TCP
|
||||||
|
livenessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /
|
||||||
|
port: http
|
||||||
|
initialDelaySeconds: 15
|
||||||
|
periodSeconds: 30
|
||||||
|
timeoutSeconds: 5
|
||||||
|
failureThreshold: 3
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /
|
||||||
|
port: http
|
||||||
|
initialDelaySeconds: 5
|
||||||
|
periodSeconds: 10
|
||||||
|
timeoutSeconds: 3
|
||||||
|
failureThreshold: 3
|
||||||
|
resources:
|
||||||
|
requests:
|
||||||
|
cpu: 50m
|
||||||
|
memory: 128Mi
|
||||||
|
limits:
|
||||||
|
cpu: 500m
|
||||||
|
memory: 384Mi
|
||||||
|
restartPolicy: Always
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: bentopdf
|
||||||
|
namespace: office-system
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: bentopdf
|
||||||
|
app.kubernetes.io/instance: bentopdf
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- name: http
|
||||||
|
port: 8080
|
||||||
|
targetPort: http
|
||||||
|
protocol: TCP
|
||||||
|
selector:
|
||||||
|
app.kubernetes.io/name: bentopdf
|
||||||
|
app.kubernetes.io/instance: bentopdf
|
||||||
|
---
|
||||||
|
apiVersion: networking.k8s.io/v1
|
||||||
|
kind: Ingress
|
||||||
|
metadata:
|
||||||
|
name: bentopdf
|
||||||
|
namespace: office-system
|
||||||
|
annotations:
|
||||||
|
cert-manager.io/cluster-issuer: letsencrypt-prod
|
||||||
|
external-dns.alpha.kubernetes.io/hostname: pdf.dooplex.hu,pdf.home
|
||||||
|
nginx.ingress.kubernetes.io/ssl-redirect: "true"
|
||||||
|
nginx.ingress.kubernetes.io/proxy-body-size: "100m"
|
||||||
|
nginx.ingress.kubernetes.io/configuration-snippet: |
|
||||||
|
set $geo_allowed 0;
|
||||||
|
if ($remote_addr ~ "^192\.168\.") { set $geo_allowed 1; }
|
||||||
|
if ($remote_addr ~ "^10\.") { set $geo_allowed 1; }
|
||||||
|
if ($geoip2_country_code = "HU") { set $geo_allowed 1; }
|
||||||
|
if ($geo_allowed = 0) {
|
||||||
|
return 403 "Access restricted to Hungary";
|
||||||
|
}
|
||||||
|
labels:
|
||||||
|
app.kubernetes.io/name: bentopdf
|
||||||
|
app.kubernetes.io/instance: bentopdf
|
||||||
|
spec:
|
||||||
|
ingressClassName: nginx-internal
|
||||||
|
tls:
|
||||||
|
- hosts:
|
||||||
|
- pdf.dooplex.hu
|
||||||
|
secretName: bentopdf-tls
|
||||||
|
rules:
|
||||||
|
- host: pdf.dooplex.hu
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: bentopdf
|
||||||
|
port:
|
||||||
|
number: 8080
|
||||||
|
- host: pdf.home
|
||||||
|
http:
|
||||||
|
paths:
|
||||||
|
- path: /
|
||||||
|
pathType: Prefix
|
||||||
|
backend:
|
||||||
|
service:
|
||||||
|
name: bentopdf
|
||||||
|
port:
|
||||||
|
number: 8080
|
||||||
@@ -27,7 +27,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: onlyoffice
|
- name: onlyoffice
|
||||||
image: onlyoffice/documentserver:9.0.2
|
image: onlyoffice/documentserver:9.4.0
|
||||||
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.54.0
|
image: filebrowser/filebrowser:v2.63.5
|
||||||
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.54.0
|
image: filebrowser/filebrowser:v2.63.5
|
||||||
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.4.0
|
image: outlinewiki/outline:1.8.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: NODE_ENV
|
- name: NODE_ENV
|
||||||
|
|||||||
@@ -121,7 +121,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: redis
|
- name: redis
|
||||||
image: redis:7.2.1
|
image: redis:7.4.9
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 6379
|
- containerPort: 6379
|
||||||
name: redis
|
name: redis
|
||||||
|
|||||||
@@ -244,7 +244,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: qbittorrent
|
- name: qbittorrent
|
||||||
image: linuxserver/qbittorrent:5.1.4
|
image: linuxserver/qbittorrent:5.2.1
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: PUID
|
- name: PUID
|
||||||
|
|||||||
@@ -41,6 +41,10 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: termix
|
- 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
|
image: ghcr.io/lukegus/termix:release-1.11.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
ports:
|
ports:
|
||||||
|
|||||||
@@ -30,7 +30,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: uptimekuma
|
- name: uptimekuma
|
||||||
image: louislam/uptime-kuma:2.3.2
|
image: louislam/uptime-kuma:2.4.0
|
||||||
imagePullPolicy: IfNotPresent
|
imagePullPolicy: IfNotPresent
|
||||||
env:
|
env:
|
||||||
- name: TZ
|
- name: TZ
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: meilisearch
|
- name: meilisearch
|
||||||
image: getmeili/meilisearch:v1.11.3
|
image: getmeili/meilisearch:v1.45.2
|
||||||
env:
|
env:
|
||||||
- name: MEILI_MASTER_KEY
|
- name: MEILI_MASTER_KEY
|
||||||
valueFrom:
|
valueFrom:
|
||||||
@@ -122,7 +122,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: pocketbase
|
- name: pocketbase
|
||||||
image: flomp/wanderer-db:v0.19.1
|
image: flomp/wanderer-db:v0.19.2
|
||||||
env:
|
env:
|
||||||
- name: ORIGIN
|
- name: ORIGIN
|
||||||
value: "https://wanderer.dooplex.hu"
|
value: "https://wanderer.dooplex.hu"
|
||||||
@@ -192,7 +192,7 @@ spec:
|
|||||||
spec:
|
spec:
|
||||||
containers:
|
containers:
|
||||||
- name: wanderer-web
|
- name: wanderer-web
|
||||||
image: flomp/wanderer-web:v0.19.1
|
image: flomp/wanderer-web:v0.19.2
|
||||||
env:
|
env:
|
||||||
- name: NODE_TLS_REJECT_UNAUTHORIZED
|
- name: NODE_TLS_REJECT_UNAUTHORIZED
|
||||||
value: "0"
|
value: "0"
|
||||||
|
|||||||
+4
-4
@@ -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.54.0
|
image: filebrowser/filebrowser:v2.63.5
|
||||||
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.54.0
|
image: filebrowser/filebrowser:v2.63.5
|
||||||
command:
|
command:
|
||||||
- filebrowser
|
- filebrowser
|
||||||
- --database=/config/filebrowser.db
|
- --database=/config/filebrowser.db
|
||||||
@@ -315,7 +315,7 @@ spec:
|
|||||||
initContainers:
|
initContainers:
|
||||||
# Create public directory if it doesn't exist
|
# Create public directory if it doesn't exist
|
||||||
- name: init-public-dir
|
- name: init-public-dir
|
||||||
image: busybox:1.36
|
image: busybox:1.38
|
||||||
command: ["sh", "-c", "mkdir -p /srv/public && chmod 755 /srv/public"]
|
command: ["sh", "-c", "mkdir -p /srv/public && chmod 755 /srv/public"]
|
||||||
volumeMounts:
|
volumeMounts:
|
||||||
- name: data
|
- name: data
|
||||||
@@ -324,7 +324,7 @@ spec:
|
|||||||
runAsUser: 0
|
runAsUser: 0
|
||||||
containers:
|
containers:
|
||||||
- name: nginx
|
- name: nginx
|
||||||
image: nginx:1.27-alpine
|
image: nginx:1.31-alpine
|
||||||
ports:
|
ports:
|
||||||
- containerPort: 8080
|
- containerPort: 8080
|
||||||
name: http
|
name: http
|
||||||
|
|||||||
@@ -153,7 +153,7 @@ spec:
|
|||||||
fsGroup: 1000
|
fsGroup: 1000
|
||||||
initContainers:
|
initContainers:
|
||||||
- name: wait-for-db
|
- name: wait-for-db
|
||||||
image: busybox:1.36
|
image: busybox:1.38
|
||||||
command:
|
command:
|
||||||
- sh
|
- sh
|
||||||
- -c
|
- -c
|
||||||
|
|||||||
Reference in New Issue
Block a user