mirror of
https://gitlab.durp.info/durfy/homelab/gitops.git
synced 2026-05-07 07:50:29 -05:00
add gotify and kuma
This commit is contained in:
parent
f457e7f1d9
commit
1ddfd948a5
3 changed files with 88 additions and 53 deletions
|
|
@ -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:
|
||||||
|
|
@ -118,7 +114,6 @@ spec:
|
||||||
targetPort: 81
|
targetPort: 81
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: Endpoints
|
kind: Endpoints
|
||||||
metadata:
|
metadata:
|
||||||
|
|
@ -139,6 +134,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
|
||||||
|
|
@ -175,9 +173,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 +197,6 @@ subsets:
|
||||||
protocol: TCP
|
protocol: TCP
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: Service
|
kind: Service
|
||||||
metadata:
|
metadata:
|
||||||
|
|
|
||||||
41
dmz/internalproxy/templates/gotify.yaml
Normal file
41
dmz/internalproxy/templates/gotify.yaml
Normal 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
|
||||||
|
|
@ -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
|
|
||||||
#
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue