gIngress.yaml 456 B

123456789101112131415161718192021
  1. kind: Ingress
  2. apiVersion: networking.k8s.io/v1
  3. metadata:
  4. name: global-book-api
  5. namespace: book-api
  6. spec:
  7. tls:
  8. - hosts:
  9. - gapi.ieasou.com
  10. secretName: global-book-api
  11. rules:
  12. - host: gapi.ieasou.com
  13. http:
  14. paths:
  15. - path: /
  16. pathType: ImplementationSpecific
  17. backend:
  18. service:
  19. name: global-book-api-svc
  20. port:
  21. number: 8080