1234567891011121314151617181920212223242526272829 |
- kind: Ingress
- apiVersion: networking.k8s.io/v1
- metadata:
- name: book-duiba
- namespace: pro
- annotations:
- kubernetes.io/ingress.class: nginx
- spec:
- rules:
- - host: duiba.easou.com
- http:
- paths:
- - path: /
- pathType: ImplementationSpecific
- backend:
- service:
- name: book-duiba-svc
- port:
- number: 8080
- - host: duiba.appeasou.com
- http:
- paths:
- - path: /
- pathType: ImplementationSpecific
- backend:
- service:
- name: book-duiba-svc
- port:
- number: 8080
|