All checks were successful
continuous-integration/drone/push Build is passing
25 lines
515 B
YAML
25 lines
515 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.DEMB.lab.adho.app
|
|
secretName: exempleci-tls
|
|
rules:
|
|
- host: exempleci.DEMB.lab.adho.app
|
|
http:
|
|
paths:
|
|
- pathType: Prefix
|
|
path: "/"
|
|
backend:
|
|
service:
|
|
name: exempleci
|
|
port:
|
|
number: 5000 |