From 7c576299412dc6d1748c24b0316b3b87698268b1 Mon Sep 17 00:00:00 2001 From: agatha Date: Thu, 7 May 2026 18:36:24 -0400 Subject: [PATCH] Fix: Add correct annotation to ingress --- k8s/ingress.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/k8s/ingress.yaml b/k8s/ingress.yaml index 97901f2..ab4007a 100644 --- a/k8s/ingress.yaml +++ b/k8s/ingress.yaml @@ -5,9 +5,10 @@ metadata: namespace: reactbin annotations: cert-manager.io/cluster-issuer: letsencrypt-prod + kubernetes.io/tls-acme: "true" nginx.ingress.kubernetes.io/ssl-redirect: "true" spec: - ingressClassName: nginx + ingressClassName: nginx-public tls: - hosts: - reactbin.juggalol.com @@ -16,7 +17,6 @@ spec: - host: reactbin.juggalol.com http: paths: - # /api/ must appear before / — nginx evaluates paths in declaration order - path: /api/ pathType: Prefix backend: @@ -30,4 +30,4 @@ spec: service: name: ui port: - number: 8080 + number: 8080 \ No newline at end of file