31 lines
706 B
YAML
31 lines
706 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: uptermd
|
|
namespace: uptermd
|
|
labels:
|
|
app.kubernetes.io/name: uptermd
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: ca-issuer
|
|
haproxy.org/backend-protocol: h1
|
|
haproxy.org/timeout-tunnel: "3600s"
|
|
haproxy.org/timeout-client: "3600s"
|
|
haproxy.org/timeout-server: "3600s"
|
|
spec:
|
|
ingressClassName: haproxy
|
|
rules:
|
|
- host: upterm.hel1.obx
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: uptermd
|
|
port:
|
|
number: 80
|
|
tls:
|
|
- hosts:
|
|
- upterm.hel1.obx
|
|
secretName: uptermd-tls
|