From 71524508367b0fbb0505395a6e8f5c09aeb9dfd6 Mon Sep 17 00:00:00 2001 From: James Andariese Date: Thu, 10 Apr 2025 23:59:42 -0500 Subject: [PATCH] remove web from ingress this makes more sense as a wildcard A record, I think. not 100% sure but for now, we'll try it. I'm pretty sure I don't need this externally ever, so making this hit the node ports seems right. --- ingress.yaml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/ingress.yaml b/ingress.yaml index 879b3b2..3fab0ff 100644 --- a/ingress.yaml +++ b/ingress.yaml @@ -11,8 +11,6 @@ spec: hosts: - s3.strudelline.net - '*.s3.strudelline.net' - - web.strudelline.net - - '*.web.strudelline.net' rules: - host: 's3.strudelline.net' http: @@ -34,23 +32,3 @@ spec: name: garage port: name: s3-api - - host: 'web.strudelline.net' - http: - paths: - - path: / - pathType: Prefix - backend: - service: - name: garage - port: - name: s3-web - - host: '*.web.strudelline.net' - http: - paths: - - path: / - pathType: Prefix - backend: - service: - name: garage - port: - name: s3-web