blob: 569a7d3b2226a53149c3bb02525a5da743ad35f8 (
plain)
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
|
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
annotations:
certmanager.k8s.io/cluseterissuer: letsencrypt-prod
ingress.kubernetes.io/ssl-redirect: "true"
name: static-files
labels:
app.kubernetes.io/part-of: static-files
app.kubernetes.io/version: "1.0"
spec:
ingressClassName: haproxy
rules:
- host: host
http:
paths:
- backend:
service:
name: static-files
port:
number: 8080
pathType: Prefix
path: /
tls:
- hosts:
- host
secretName: prod-ofmax-li-sec
|