-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathingress.yaml
36 lines (36 loc) · 848 Bytes
/
ingress.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: dav-ingress
annotations:
kubernetes.io/tls-acme: "true"
cert-manager.io/cluster-issuer: "letsencrypt-prod"
acme.cert-manager.io/http01-edit-in-place: "true"
spec:
ingressClassName: public
tls:
- hosts:
- api.dav-huts.eu
- dav-huts.eu
secretName: dav-huts-tls
rules:
- host: api.dav-huts.eu
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: dav-backend-svc
port:
number: 80
- host: dav-huts.eu
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: dav-frontend-svc
port:
number: 80