24 lines
629 B
YAML
24 lines
629 B
YAML
---
|
|
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: external-svc
|
|
namespace: infra
|
|
# annotations:
|
|
# cert-manager.io/issuer: "letsencrypt-staging"
|
|
spec:
|
|
tls:
|
|
- hosts:
|
|
- debats.terre-de-convergence.org
|
|
secretName: ts-tdc-aren-prod
|
|
rules:
|
|
- host: debats.terre-de-convergence.org
|
|
http: # Is there a way take this part form the base overlay?
|
|
paths:
|
|
- pathType: Prefix
|
|
path: "/"
|
|
backend:
|
|
service:
|
|
name: tdc-aren-external-svc # Is there a way to have the `tdc-aren-` prefix applied automatically?
|
|
port:
|
|
number: 80
|