adserver-ingress.yaml 454 B

1234567891011121314151617181920212223
  1. apiVersion: extensions/v1beta1
  2. kind: Ingress
  3. metadata:
  4. name: adserver-ingress
  5. namespace: pro
  6. annotations:
  7. kubernetes.io/ingress.class: nginx
  8. spec:
  9. rules:
  10. - host: adm.easou.com
  11. http:
  12. paths:
  13. - path: /
  14. backend:
  15. serviceName: adserver-svc
  16. servicePort: 80
  17. - host: adm.appeasou.com
  18. http:
  19. paths:
  20. - path: /
  21. backend:
  22. serviceName: dashouye-svc
  23. servicePort: 80