From ba508dea578afbc8c35116822af80c9169b26c26 Mon Sep 17 00:00:00 2001 From: Finn Date: Sun, 16 Feb 2025 14:31:13 -0800 Subject: [PATCH] Update seattledoulaservices.com ingress --- k8s/wordpress/hannah.yaml | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/k8s/wordpress/hannah.yaml b/k8s/wordpress/hannah.yaml index e1b523d..6fb4e36 100644 --- a/k8s/wordpress/hannah.yaml +++ b/k8s/wordpress/hannah.yaml @@ -154,3 +154,35 @@ spec: name: hannah port: name: web +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: seattledoulaservices.com + annotations: + cert-manager.io/cluster-issuer: letsencrypt +spec: + tls: + - hosts: [seattledoulaservices.com, www.seattledoulaservices.com] + secretName: seattledoulaservices.com + rules: + - host: seattledoulaservices.com + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: hannah + port: + name: web + - host: www.seattledoulaservices.com + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: hannah + port: + name: web