This commit is contained in:
Michael Thomson
2024-01-11 16:24:50 -05:00
parent f18f3fcfe9
commit fc16584870
13 changed files with 218 additions and 0 deletions

25
ghost/ingress.yaml Normal file
View File

@@ -0,0 +1,25 @@
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: ghost
namespace: ghost
annotations:
traefik.ingress.kubernetes.io/router.entrypoints: websecure
traefik.ingress.kubernetes.io/router.middlewares: traefik-authentik@kubernetescrd
traefik.ingress.kubernetes.io/router.tls: "true"
spec:
rules:
- host: ghost.michaelthomson.dev
http:
paths:
- pathType: ImplementationSpecific
path: /
backend:
service:
name: ghost
port:
name: http
tls:
- hosts:
- ghost.michaelthomson.dev
secretName: letsencrypt-wildcard-cert-michaelthomson.dev