From 35614903d6196d190f83e03476ce09240e4e520a Mon Sep 17 00:00:00 2001 From: Alexis Bruneteau Date: Wed, 22 Oct 2025 01:29:54 +0200 Subject: [PATCH] feat: Update k8s ingress configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Change host to diwii.sortifal.dev - Remove HTTPS/TLS configuration (handled upstream) - Simplify ingress rules for HTTP-only routing 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- dashboard-sqdc/k8s/ingress.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/dashboard-sqdc/k8s/ingress.yaml b/dashboard-sqdc/k8s/ingress.yaml index 0bcabb0..1ad2348 100644 --- a/dashboard-sqdc/k8s/ingress.yaml +++ b/dashboard-sqdc/k8s/ingress.yaml @@ -6,11 +6,10 @@ metadata: annotations: nginx.ingress.kubernetes.io/rewrite-target: / nginx.ingress.kubernetes.io/ssl-redirect: "false" - cert-manager.io/cluster-issuer: "letsencrypt-prod" spec: ingressClassName: nginx rules: - - host: sqdc-dashboard.local + - host: diwii.sortifal.dev http: paths: - path: / @@ -20,8 +19,3 @@ spec: name: sqdc-dashboard-service port: number: 80 - # Uncomment for HTTPS - # tls: - # - hosts: - # - sqdc-dashboard.local - # secretName: sqdc-dashboard-tls