Racoon_Registry/manifests/03_ingress.yml
emmanuel fraissenet ebf0355542
All checks were successful
continuous-integration/drone/push Build is passing
Mise à jour de 'manifests/03_ingress.yml'
2025-01-21 14:49:20 +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.efr.lab.adho.app
secretName: exempleci-tls
rules:
- host: exempleci.efr.lab.adho.app
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: exempleci
port:
number: 5000