From 1ddfd948a5542f68a91371d421f6cde1ea545f89 Mon Sep 17 00:00:00 2001 From: DeveloperDurp Date: Sat, 2 May 2026 06:08:39 -0500 Subject: [PATCH] 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