Compare commits

...
Sign in to create a new pull request.

10 commits

Author SHA1 Message Date
dc2c619e19 update 2026-05-12 06:26:13 -05:00
fa564e4d8c update 2026-05-12 06:24:19 -05:00
dc09d0109e update 2026-05-10 08:03:18 -05:00
ce51ae2f8d update 2026-05-09 13:39:43 -05:00
e66526b176 update 2026-05-09 13:37:02 -05:00
2d1916de2b add images 2026-05-09 13:32:48 -05:00
b968cd024f update 2026-05-09 12:14:16 -05:00
d7effa4eac update 2026-05-09 08:23:10 -05:00
d50b776fef update 2026-05-02 06:15:04 -05:00
1ddfd948a5 add gotify and kuma 2026-05-02 06:08:39 -05:00
5 changed files with 146 additions and 55 deletions

View file

@ -9,7 +9,6 @@ subsets:
- port: 443 - port: 443
--- ---
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
metadata: metadata:
@ -21,7 +20,6 @@ spec:
targetPort: 443 targetPort: 443
--- ---
apiVersion: v1 apiVersion: v1
kind: Endpoints kind: Endpoints
metadata: metadata:
@ -33,7 +31,6 @@ subsets:
- port: 443 - port: 443
--- ---
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
metadata: metadata:
@ -45,7 +42,6 @@ spec:
targetPort: 443 targetPort: 443
--- ---
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
metadata: metadata:
@ -67,6 +63,9 @@ spec:
- name: forgejo - name: forgejo
port: 3000 port: 3000
protocol: TCP protocol: TCP
- name: kuma
port: 3001
protocol: TCP
targetPort: 3000 targetPort: 3000
- name: freshrss - name: freshrss
port: 8085 port: 8085
@ -104,6 +103,10 @@ spec:
port: 5000 port: 5000
protocol: TCP protocol: TCP
targetPort: 5000 targetPort: 5000
- name: gitlab-registry
port: 5002
protocol: TCP
targetPort: 5002
- name: root-vault - name: root-vault
port: 8201 port: 8201
protocol: TCP protocol: TCP
@ -116,9 +119,11 @@ spec:
port: 81 port: 81
protocol: TCP protocol: TCP
targetPort: 81 targetPort: 81
- name: gotify
port: 8070
protocol: TCP
--- ---
apiVersion: v1 apiVersion: v1
kind: Endpoints kind: Endpoints
metadata: metadata:
@ -139,6 +144,9 @@ subsets:
- name: forgejo - name: forgejo
port: 3000 port: 3000
protocol: TCP protocol: TCP
- name: kuma
port: 3001
protocol: TCP
- name: freshrss - name: freshrss
port: 8085 port: 8085
protocol: TCP protocol: TCP
@ -166,6 +174,9 @@ subsets:
- name: registry - name: registry
port: 5000 port: 5000
protocol: TCP protocol: TCP
- name: gitlab-registry
port: 5002
protocol: TCP
- name: root-vault - name: root-vault
port: 8201 port: 8201
protocol: TCP protocol: TCP
@ -175,9 +186,11 @@ subsets:
- name: smokeping - name: smokeping
port: 81 port: 81
protocol: TCP protocol: TCP
- name: gotify
port: 8070
protocol: TCP
--- ---
apiVersion: v1 apiVersion: v1
kind: Endpoints kind: Endpoints
metadata: metadata:
@ -197,7 +210,6 @@ subsets:
protocol: TCP protocol: TCP
--- ---
apiVersion: v1 apiVersion: v1
kind: Service kind: Service
metadata: metadata:

View file

@ -80,3 +80,46 @@ metadata:
spec: spec:
type: ExternalName type: ExternalName
externalName: durp.info externalName: durp.info
---
apiVersion: traefik.io/v1alpha1
kind: IngressRoute
metadata:
name: gitlab-registry
spec:
entryPoints:
- websecure
routes:
- match: Host(`images.durp.info`)
kind: Rule
services:
- name: unraid
port: 5002
scheme: http
tls:
secretName: gitlab-images-tls
---
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

View file

@ -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

View file

@ -1,46 +1,41 @@
#apiVersion: traefik.io/v1alpha1 apiVersion: traefik.io/v1alpha1
#kind: IngressRoute kind: IngressRoute
#metadata: metadata:
# name: kuma-ingress name: kuma-ingress
#spec: spec:
# entryPoints: entryPoints:
# - websecure - websecure
# routes: routes:
# - match: Host(`kuma.durp.info`) && PathPrefix(`/`) - match: Host(`kuma.durp.info`) && PathPrefix(`/`)
# kind: Rule kind: Rule
# middlewares: services:
# - name: authentik-proxy-provider - name: unraid
# namespace: traefik port: 3001
# services: scheme: http
# - name: master-cluster tls:
# port: 443 secretName: kuma-tls
# tls:
# secretName: kuma-tls ---
# apiVersion: cert-manager.io/v1
#--- kind: Certificate
# metadata:
#apiVersion: cert-manager.io/v1 name: kuma-tls
#kind: Certificate spec:
#metadata: secretName: kuma-tls
# name: kuma-tls issuerRef:
#spec: name: letsencrypt-production
# issuerRef: kind: ClusterIssuer
# name: letsencrypt-production commonName: "kuma.durp.info"
# kind: ClusterIssuer dnsNames:
# secretName: kuma-tls - "kuma.durp.info"
# commonName: "kuma.durp.info"
# dnsNames: ---
# - "kuma.durp.info" kind: Service
# apiVersion: v1
#--- metadata:
# name: kuma-external-dns
#kind: Service annotations:
#apiVersion: v1 external-dns.alpha.kubernetes.io/hostname: kuma.durp.info
#metadata: spec:
# name: kuma-external-dns type: ExternalName
# annotations: externalName: durp.info
# external-dns.alpha.kubernetes.io/hostname: kuma.durp.info
#spec:
# type: ExternalName
# externalName: durp.info
#

View file

@ -34,7 +34,7 @@ authentik:
enabled: true enabled: true
image: image:
registry: registry.durp.info registry: registry.durp.info
repository: bitnami/postgresql repository: bitnamilegacy/postgresql
pullPolicy: Always pullPolicy: Always
postgresqlUsername: "authentik" postgresqlUsername: "authentik"
postgresqlDatabase: "authentik" postgresqlDatabase: "authentik"
@ -52,7 +52,7 @@ authentik:
enabled: false enabled: false
image: image:
registry: registry.durp.info registry: registry.durp.info
repository: bitnami/redis repository: bitnamilegacy/redis
pullPolicy: Always pullPolicy: Always
architecture: standalone architecture: standalone
auth: auth: