Mon-test/manifests/03_ingress.yml
phong tran 69665bf394
All checks were successful
continuous-integration/drone/push Build is passing
Actualiser manifests/03_ingress.yml
2025-03-12 15:27:05 +00:00

25 lines
513 B
YAML

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: exempleci-ingress
annotations:
cert-manager.io/cluster-issuer: letsencrypt-prod
labels:
app: exempleci
spec:
ingressClassName: nginx
tls:
- hosts:
- exempleci.PTR.lab.adho.app
secretName: exempleci-tls
rules:
- host: exempleci.PTR.lab.adho.app
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: exempleci
port:
number: 5000