Merge pull request 'fix: add TLS certificate to whoami ingress' (#49) from orion/auto/fix-add-tls-certificate-to-whoami-ingres-1779025733344 into main

Reviewed-on: #49
This commit was merged in pull request #49.
This commit is contained in:
2026-05-17 13:51:05 +00:00
+18 -10
View File
@@ -3,16 +3,24 @@ kind: Ingress
metadata:
name: whoami
namespace: apps
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
traefik.ingress.kubernetes.io/router.entrypoints: web,websecure
traefik.ingress.kubernetes.io/router.tls: "true"
spec:
ingressClassName: traefik
tls:
- hosts:
- whoami.khalisio.com
secretName: whoami-tls
rules:
- host: whoami.khalisio.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: whoami
port:
name: http
- host: whoami.khalisio.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: whoami
port:
number: 80