27 行
628 B
YAML
27 行
628 B
YAML
apiVersion: networking.k8s.io/v1
|
|
kind: Ingress
|
|
metadata:
|
|
name: sinceai-shop
|
|
namespace: apps
|
|
annotations:
|
|
# 302 跳转到https://sinceai.taobao.com/
|
|
nginx.ingress.kubernetes.io/configuration-snippet: |
|
|
rewrite ^/(.*)$ https://sinceai.taobao.com/$1? permanent;
|
|
spec:
|
|
ingressClassName: nginx
|
|
rules:
|
|
- host: shop.sinceai.com
|
|
http:
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
backend:
|
|
service:
|
|
name: halo
|
|
port:
|
|
number: 80
|
|
tls:
|
|
- hosts:
|
|
- shop.sinceai.com
|
|
secretName: sinceai-com-crt
|