ingress.yaml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. kind: Ingress
  2. apiVersion: networking.k8s.io/v1
  3. metadata:
  4. name: book-appeasou-com
  5. namespace: pro
  6. spec:
  7. tls:
  8. - hosts:
  9. - book.appeasou.com
  10. secretName: appeasou-com
  11. - hosts:
  12. - book.easou.com
  13. secretName: book-easou-com
  14. - hosts:
  15. - book.easou.com.cn
  16. secretName: book-easou-com-cn
  17. rules:
  18. - host: book.appeasou.com
  19. http:
  20. paths:
  21. - path: /
  22. pathType: ImplementationSpecific
  23. backend:
  24. service:
  25. name: book-touchrs-base-svc
  26. port:
  27. number: 8080
  28. - host: book.easou.com
  29. http:
  30. paths:
  31. - path: /
  32. pathType: ImplementationSpecific
  33. backend:
  34. service:
  35. name: book-touchrs-base-svc
  36. port:
  37. number: 8080
  38. - host: book.easou.com.cn
  39. http:
  40. paths:
  41. - path: /
  42. pathType: ImplementationSpecific
  43. backend:
  44. service:
  45. name: book-touchrs-base-svc
  46. port:
  47. number: 8080