-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathingress.yaml.tpl
More file actions
34 lines (33 loc) · 943 Bytes
/
ingress.yaml.tpl
File metadata and controls
34 lines (33 loc) · 943 Bytes
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
# Teable Ingress Configuration
# Generated for domain: ${teable_domain}
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: teable
namespace: teable
annotations:
nginx.ingress.kubernetes.io/proxy-body-size: "100m"
nginx.ingress.kubernetes.io/proxy-buffer-size: "128k"
nginx.ingress.kubernetes.io/proxy-send-timeout: "600"
nginx.ingress.kubernetes.io/proxy-read-timeout: "600"
nginx.ingress.kubernetes.io/proxy-request-buffering: "off"
# Uncomment for cert-manager TLS
# cert-manager.io/cluster-issuer: letsencrypt-prod
spec:
ingressClassName: nginx
rules:
- host: ${teable_domain}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: teable
port:
number: 3000
# Uncomment for TLS
# tls:
# - hosts:
# - ${teable_domain}
# secretName: teable-tls