satan666/manifests/03_ingress.yml
Gael Dieudonne 6374320442
All checks were successful
continuous-integration/drone/push Build is passing
Mise à jour de 'manifests/03_ingress.yml'
2025-01-23 14:00:20 +00:00

25 lines
535 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.gael.dieudonne.lab.adho.app
secretName: exempleci-tls
rules:
- host: exempleci.gael.dieudonne.lab.adho.app
http:
paths:
- pathType: Prefix
path: "/"
backend:
service:
name: exempleci
port:
number: 5000