1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- kind: Ingress
- apiVersion: networking.k8s.io/v1
- metadata:
- name: book-appeasou-com
- namespace: pro
- spec:
- tls:
- - hosts:
- - book.appeasou.com
- secretName: appeasou-com
- - hosts:
- - book.easou.com
- secretName: book-easou-com
- - hosts:
- - book.easou.com.cn
- secretName: book-easou-com-cn
- rules:
- - host: book.appeasou.com
- http:
- paths:
- - path: /
- pathType: ImplementationSpecific
- backend:
- service:
- name: book-touchrs-base-svc
- port:
- number: 8080
- - host: book.easou.com
- http:
- paths:
- - path: /
- pathType: ImplementationSpecific
- backend:
- service:
- name: book-touchrs-base-svc
- port:
- number: 8080
- - host: book.easou.com.cn
- http:
- paths:
- - path: /
- pathType: ImplementationSpecific
- backend:
- service:
- name: book-touchrs-base-svc
- port:
- number: 8080
|