fix: add TLS for admin/api ingresses

This commit is contained in:
Ashwin Kumar Sivakumar 2026-04-18 01:00:43 +05:30
parent f6e8c72e62
commit 2043ef4ac4
2 changed files with 14 additions and 0 deletions

View file

@ -3,8 +3,15 @@ kind: Ingress
metadata:
name: nxtgauge-admin-solid
namespace: nxtgauge
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.entrypoints: web,websecure
spec:
ingressClassName: traefik
tls:
- hosts:
- admin.nxtgauge.com
secretName: admin-tls
rules:
- host: admin.nxtgauge.com
http:

View file

@ -3,8 +3,15 @@ kind: Ingress
metadata:
name: nxtgauge-backend-rust
namespace: nxtgauge
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.entrypoints: web,websecure
spec:
ingressClassName: traefik
tls:
- hosts:
- api.nxtgauge.com
secretName: api-tls
rules:
- host: api.nxtgauge.com
http: