From fb8a34ba7a1482946a0c869e3d58cea96ee3db20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rcio=20Fernandes?= Date: Sat, 28 Mar 2026 09:27:37 +0000 Subject: [PATCH] fix: public ingress route --- deploy/infra/ingress.yaml | 27 -------------------- deploy/infra/public-https-ingress-route.yaml | 2 +- 2 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 deploy/infra/ingress.yaml diff --git a/deploy/infra/ingress.yaml b/deploy/infra/ingress.yaml deleted file mode 100644 index 70e6918..0000000 --- a/deploy/infra/ingress.yaml +++ /dev/null @@ -1,27 +0,0 @@ - -apiVersion: networking.k8s.io/v1 -kind: Ingress -metadata: - name: git-limbosolutions-com - namespace: git-limbosolutions-com - annotations: - cert-manager.io/cluster-issuer: letsencrypt-prod - kubernetes.io/ingress.class: traefik - traefik.ingress.kubernetes.io/router.entrypoints: websecure,public-https -spec: - ingressClassName: traefik - rules: - - host: git.limbosolutions.com - http: - paths: - - backend: - service: - name: gitea-http - port: - number: 3000 - path: / - pathType: Prefix - tls: - - secretName: limbosolutions-com-tls - hosts: - - "git.limbosolutions.com" diff --git a/deploy/infra/public-https-ingress-route.yaml b/deploy/infra/public-https-ingress-route.yaml index d587f6a..c5f8787 100644 --- a/deploy/infra/public-https-ingress-route.yaml +++ b/deploy/infra/public-https-ingress-route.yaml @@ -6,7 +6,7 @@ spec: entryPoints: - public-https routes: - - match: Host(`git.limbosolutions.com`) && !PathPrefix(`-/admin`) + - match: Host(`git.limbosolutions.com`) && !PathPrefix(`/-/admin`) kind: Rule services: - name: gitea-http