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