From d210cd13f95ba5f66fab42ac5a647cd769318c9a Mon Sep 17 00:00:00 2001 From: RenovateBot Date: Sat, 18 Apr 2026 06:01:56 +0000 Subject: [PATCH 01/11] Update Helm release csi-driver-nfs to v4.13.2 --- infra/nfs/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/nfs/Chart.yaml b/infra/nfs/Chart.yaml index 1a9ffb9..d55feef 100644 --- a/infra/nfs/Chart.yaml +++ b/infra/nfs/Chart.yaml @@ -9,4 +9,4 @@ appVersion: "1.16.0" dependencies: - name: csi-driver-nfs repository: https://raw.githubusercontent.com/kubernetes-csi/csi-driver-nfs/master/charts - version: 4.11.0 + version: 4.13.2 From 1ddfd948a5542f68a91371d421f6cde1ea545f89 Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sat, 2 May 2026 06:08:39 -0500 Subject: [PATCH 02/11] add gotify and kuma --- dmz/internalproxy/templates/endpoints.yaml | 13 ++-- dmz/internalproxy/templates/gotify.yaml | 41 ++++++++++ dmz/internalproxy/templates/kuma.yaml | 87 ++++++++++------------ 3 files changed, 88 insertions(+), 53 deletions(-) create mode 100644 dmz/internalproxy/templates/gotify.yaml diff --git a/dmz/internalproxy/templates/endpoints.yaml b/dmz/internalproxy/templates/endpoints.yaml index 428120a..fbabade 100644 --- a/dmz/internalproxy/templates/endpoints.yaml +++ b/dmz/internalproxy/templates/endpoints.yaml @@ -9,7 +9,6 @@ subsets: - port: 443 --- - apiVersion: v1 kind: Service metadata: @@ -21,7 +20,6 @@ spec: targetPort: 443 --- - apiVersion: v1 kind: Endpoints metadata: @@ -33,7 +31,6 @@ subsets: - port: 443 --- - apiVersion: v1 kind: Service metadata: @@ -45,7 +42,6 @@ spec: targetPort: 443 --- - apiVersion: v1 kind: Service metadata: @@ -118,7 +114,6 @@ spec: targetPort: 81 --- - apiVersion: v1 kind: Endpoints metadata: @@ -139,6 +134,9 @@ subsets: - name: forgejo port: 3000 protocol: TCP + - name: kuma + port: 3001 + protocol: TCP - name: freshrss port: 8085 protocol: TCP @@ -175,9 +173,11 @@ subsets: - name: smokeping port: 81 protocol: TCP + - name: gotify + port: 8070 + protocol: TCP --- - apiVersion: v1 kind: Endpoints metadata: @@ -197,7 +197,6 @@ subsets: protocol: TCP --- - apiVersion: v1 kind: Service metadata: diff --git a/dmz/internalproxy/templates/gotify.yaml b/dmz/internalproxy/templates/gotify.yaml new file mode 100644 index 0000000..6619aed --- /dev/null +++ b/dmz/internalproxy/templates/gotify.yaml @@ -0,0 +1,41 @@ +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: gotify-ingress +spec: + entryPoints: + - websecure + routes: + - match: Host(`gotify.durp.info`) && PathPrefix(`/`) + kind: Rule + services: + - name: unraid + port: 8070 + scheme: http + tls: + secretName: gotify-tls + +--- +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: gotify-tls +spec: + secretName: gotify-tls + issuerRef: + name: letsencrypt-production + kind: ClusterIssuer + commonName: "gotify.durp.info" + dnsNames: + - "gotify.durp.info" + +--- +kind: Service +apiVersion: v1 +metadata: + name: gotify-external-dns + annotations: + external-dns.alpha.kubernetes.io/hostname: gotify.durp.info +spec: + type: ExternalName + externalName: durp.info diff --git a/dmz/internalproxy/templates/kuma.yaml b/dmz/internalproxy/templates/kuma.yaml index 2465b67..31b040b 100644 --- a/dmz/internalproxy/templates/kuma.yaml +++ b/dmz/internalproxy/templates/kuma.yaml @@ -1,46 +1,41 @@ -#apiVersion: traefik.io/v1alpha1 -#kind: IngressRoute -#metadata: -# name: kuma-ingress -#spec: -# entryPoints: -# - websecure -# routes: -# - match: Host(`kuma.durp.info`) && PathPrefix(`/`) -# kind: Rule -# middlewares: -# - name: authentik-proxy-provider -# namespace: traefik -# services: -# - name: master-cluster -# port: 443 -# tls: -# secretName: kuma-tls -# -#--- -# -#apiVersion: cert-manager.io/v1 -#kind: Certificate -#metadata: -# name: kuma-tls -#spec: -# issuerRef: -# name: letsencrypt-production -# kind: ClusterIssuer -# secretName: kuma-tls -# commonName: "kuma.durp.info" -# dnsNames: -# - "kuma.durp.info" -# -#--- -# -#kind: Service -#apiVersion: v1 -#metadata: -# name: kuma-external-dns -# annotations: -# external-dns.alpha.kubernetes.io/hostname: kuma.durp.info -#spec: -# type: ExternalName -# externalName: durp.info -# \ No newline at end of file +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: kuma-ingress +spec: + entryPoints: + - websecure + routes: + - match: Host(`kuma.durp.info`) && PathPrefix(`/`) + kind: Rule + services: + - name: unraid + port: 3001 + scheme: http + tls: + secretName: kuma-tls + +--- +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: kuma-tls +spec: + secretName: kuma-tls + issuerRef: + name: letsencrypt-production + kind: ClusterIssuer + commonName: "kuma.durp.info" + dnsNames: + - "kuma.durp.info" + +--- +kind: Service +apiVersion: v1 +metadata: + name: kuma-external-dns + annotations: + external-dns.alpha.kubernetes.io/hostname: kuma.durp.info +spec: + type: ExternalName + externalName: durp.info From d50b776fef3f43a486a89da459d2ecebefde167c Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sat, 2 May 2026 06:15:04 -0500 Subject: [PATCH 03/11] update --- dmz/internalproxy/templates/endpoints.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/dmz/internalproxy/templates/endpoints.yaml b/dmz/internalproxy/templates/endpoints.yaml index fbabade..c7544c9 100644 --- a/dmz/internalproxy/templates/endpoints.yaml +++ b/dmz/internalproxy/templates/endpoints.yaml @@ -63,6 +63,9 @@ spec: - name: forgejo port: 3000 protocol: TCP + - name: kuma + port: 3001 + protocol: TCP targetPort: 3000 - name: freshrss port: 8085 @@ -112,6 +115,9 @@ spec: port: 81 protocol: TCP targetPort: 81 + - name: gotify + port: 8070 + protocol: TCP --- apiVersion: v1 From d7effa4eacbb0dca4091b6eff37caec9abab8684 Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sat, 9 May 2026 08:23:10 -0500 Subject: [PATCH 04/11] update --- dmz/internalproxy/templates/s3.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dmz/internalproxy/templates/s3.yaml b/dmz/internalproxy/templates/s3.yaml index 5bf203e..8d5bdca 100644 --- a/dmz/internalproxy/templates/s3.yaml +++ b/dmz/internalproxy/templates/s3.yaml @@ -13,7 +13,7 @@ spec: kind: Rule services: - name: unraid - port: 9768 + port: 9769 scheme: http tls: secretName: s3-tls @@ -47,7 +47,7 @@ spec: kind: Rule services: - name: unraid - port: 9768 + port: 9769 scheme: http tls: secretName: s3-external-tls From b968cd024f5ae8fd94e1601f15cfaf8d65da4187 Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sat, 9 May 2026 12:14:16 -0500 Subject: [PATCH 05/11] update --- dmz/internalproxy/templates/s3.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dmz/internalproxy/templates/s3.yaml b/dmz/internalproxy/templates/s3.yaml index 8d5bdca..5bf203e 100644 --- a/dmz/internalproxy/templates/s3.yaml +++ b/dmz/internalproxy/templates/s3.yaml @@ -13,7 +13,7 @@ spec: kind: Rule services: - name: unraid - port: 9769 + port: 9768 scheme: http tls: secretName: s3-tls @@ -47,7 +47,7 @@ spec: kind: Rule services: - name: unraid - port: 9769 + port: 9768 scheme: http tls: secretName: s3-external-tls From 2d1916de2bf8de93e52e61f02ba0d51445f5925a Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sat, 9 May 2026 13:32:48 -0500 Subject: [PATCH 06/11] add images --- dmz/internalproxy/templates/gitlab.yaml | 44 +++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/dmz/internalproxy/templates/gitlab.yaml b/dmz/internalproxy/templates/gitlab.yaml index 2f225c2..5d07bea 100644 --- a/dmz/internalproxy/templates/gitlab.yaml +++ b/dmz/internalproxy/templates/gitlab.yaml @@ -80,3 +80,47 @@ metadata: spec: type: ExternalName externalName: durp.info + +--- +apiVersion: traefik.io/v1alpha1 +kind: IngressRoute +metadata: + name: gitlab-registry + namespace: gitlab +spec: + entryPoints: + - websecure + routes: + - match: Host(`images.durp.info`) + kind: Rule + services: + - name: unraid + port: 5050 + scheme: http + tls: + certResolver: letsencrypt + +--- +apiVersion: cert-manager.io/v1 +kind: Certificate +metadata: + name: gitlab-images-tls +spec: + secretName: gitlab-images-tls + issuerRef: + name: letsencrypt-production + kind: ClusterIssuer + commonName: "images.durp.info" + dnsNames: + - "images.durp.info" + +--- +kind: Service +apiVersion: v1 +metadata: + name: gitlab-images-external-dns + annotations: + external-dns.alpha.kubernetes.io/hostname: images.durp.info +spec: + type: ExternalName + externalName: durp.info From e66526b1766e9b27b0d17e84ed78b47eaae6b525 Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sat, 9 May 2026 13:37:02 -0500 Subject: [PATCH 07/11] update --- dmz/internalproxy/templates/gitlab.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/dmz/internalproxy/templates/gitlab.yaml b/dmz/internalproxy/templates/gitlab.yaml index 5d07bea..6f032fa 100644 --- a/dmz/internalproxy/templates/gitlab.yaml +++ b/dmz/internalproxy/templates/gitlab.yaml @@ -86,7 +86,6 @@ apiVersion: traefik.io/v1alpha1 kind: IngressRoute metadata: name: gitlab-registry - namespace: gitlab spec: entryPoints: - websecure From ce51ae2f8d7439403922c185615d9668b4b2558b Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sat, 9 May 2026 13:39:43 -0500 Subject: [PATCH 08/11] update --- dmz/internalproxy/templates/gitlab.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dmz/internalproxy/templates/gitlab.yaml b/dmz/internalproxy/templates/gitlab.yaml index 6f032fa..5331347 100644 --- a/dmz/internalproxy/templates/gitlab.yaml +++ b/dmz/internalproxy/templates/gitlab.yaml @@ -97,7 +97,7 @@ spec: port: 5050 scheme: http tls: - certResolver: letsencrypt + secretName: gitlab-images-tls --- apiVersion: cert-manager.io/v1 From dc09d0109eb3a7d65423c80cd91becb01c760887 Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sun, 10 May 2026 08:03:18 -0500 Subject: [PATCH 09/11] update --- dmz/internalproxy/templates/endpoints.yaml | 7 +++++++ dmz/internalproxy/templates/gitlab.yaml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/dmz/internalproxy/templates/endpoints.yaml b/dmz/internalproxy/templates/endpoints.yaml index c7544c9..8380a2c 100644 --- a/dmz/internalproxy/templates/endpoints.yaml +++ b/dmz/internalproxy/templates/endpoints.yaml @@ -103,6 +103,10 @@ spec: port: 5000 protocol: TCP targetPort: 5000 + - name: gitlab-registry + port: 5002 + protocol: TCP + targetPort: 5002 - name: root-vault port: 8201 protocol: TCP @@ -170,6 +174,9 @@ subsets: - name: registry port: 5000 protocol: TCP + - name: gitlab-registry + port: 5002 + protocol: TCP - name: root-vault port: 8201 protocol: TCP diff --git a/dmz/internalproxy/templates/gitlab.yaml b/dmz/internalproxy/templates/gitlab.yaml index 5331347..d64a5aa 100644 --- a/dmz/internalproxy/templates/gitlab.yaml +++ b/dmz/internalproxy/templates/gitlab.yaml @@ -94,7 +94,7 @@ spec: kind: Rule services: - name: unraid - port: 5050 + port: 5002 scheme: http tls: secretName: gitlab-images-tls From fa564e4d8c27be062bff10a60ff366d972334feb Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Tue, 12 May 2026 06:24:19 -0500 Subject: [PATCH 10/11] update --- infra/authentik/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/authentik/values.yaml b/infra/authentik/values.yaml index 1cf4c0a..c98e563 100644 --- a/infra/authentik/values.yaml +++ b/infra/authentik/values.yaml @@ -34,7 +34,7 @@ authentik: enabled: true image: registry: registry.durp.info - repository: bitnami/postgresql + repository: bitnamilegacy/postgresql pullPolicy: Always postgresqlUsername: "authentik" postgresqlDatabase: "authentik" From dc2c619e19c59aa770109eea70d6a8cbf52359ae Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Tue, 12 May 2026 06:26:13 -0500 Subject: [PATCH 11/11] update --- infra/authentik/values.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infra/authentik/values.yaml b/infra/authentik/values.yaml index c98e563..7b75190 100644 --- a/infra/authentik/values.yaml +++ b/infra/authentik/values.yaml @@ -52,7 +52,7 @@ authentik: enabled: false image: registry: registry.durp.info - repository: bitnami/redis + repository: bitnamilegacy/redis pullPolicy: Always architecture: standalone auth: