From 1a9d3153dd6bc35f358067a54e30dc37717cc6da Mon Sep 17 00:00:00 2001 From: Tobias Brunner Date: Wed, 23 Nov 2022 17:57:55 +0100 Subject: [PATCH] expose the webfinger caddy --- tobru-ch/ghost-ingress.yaml | 7 +++++++ tobru-ch/ghost-service.yaml | 3 +++ 2 files changed, 10 insertions(+) diff --git a/tobru-ch/ghost-ingress.yaml b/tobru-ch/ghost-ingress.yaml index bb17758..a512d5d 100644 --- a/tobru-ch/ghost-ingress.yaml +++ b/tobru-ch/ghost-ingress.yaml @@ -17,6 +17,13 @@ spec: - host: tobru.ch http: paths: + - path: /.well-known/webfinger + pathType: Prefix + backend: + service: + name: ghost + port: + number: 8080 - path: / pathType: Prefix backend: diff --git a/tobru-ch/ghost-service.yaml b/tobru-ch/ghost-service.yaml index bc95647..96b7100 100644 --- a/tobru-ch/ghost-service.yaml +++ b/tobru-ch/ghost-service.yaml @@ -11,6 +11,9 @@ spec: - port: 2368 protocol: TCP targetPort: 2368 + - port: 8080 + protocol: TCP + targetPort: 8080 selector: component: ghost sessionAffinity: None