frontend-service.yaml 345 B

1234567891011121314151617
  1. apiVersion: v1
  2. kind: Service
  3. metadata:
  4. name: frontend
  5. labels:
  6. app: guestbook
  7. tier: frontend
  8. spec:
  9. # if your cluster supports it, uncomment the following to automatically create
  10. # an external load-balanced IP for the frontend service.
  11. # type: LoadBalancer
  12. ports:
  13. - port: 80
  14. selector:
  15. app: guestbook
  16. tier: frontend