-
Notifications
You must be signed in to change notification settings - Fork 0
/
ingress-tls.yaml
34 lines (34 loc) · 943 Bytes
/
ingress-tls.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
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: example-ingress
annotations:
kubernetes.io/ingress.class: "nginx" # 假设使用 nginx Ingress 控制器
nginx.ingress.kubernetes.io/ssl-redirect: "true" # 强制将 HTTP 重定向到 HTTPS
spec:
tls:
- hosts:
- web.example.com
- api.example.com
secretName: tls-secret # 引用上面创建的 TLS 秘密
rules:
- host: web.example.com
http:
paths:
- path: /app/
pathType: Prefix
backend:
service:
name: web-frontend
port:
number: 80
- host: api.example.com
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: api-service
port:
number: 80