1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| apiVersion: networking.k8s.io/v1
| kind: Ingress
| metadata:
| annotations:
| kubernetes.io/ingress.class: nginx
| nginx.ingress.kubernetes.io/proxy-connect-timeout: '5'
| name: chatgpt-web
| spec:
| rules:
| - host: chatgpt.example.com
| http:
| paths:
| - backend:
| service:
| name: chatgpt-web
| port:
| number: 3002
| path: /
| pathType: ImplementationSpecific
| tls:
| - secretName: chatgpt-web-tls
|
|