vote-service.yaml 234 B

1234567891011121314151617
  1. apiVersion: v1
  2. kind: Service
  3. metadata:
  4. labels:
  5. app: vote
  6. name: vote
  7. namespace: vote
  8. spec:
  9. type: NodePort
  10. ports:
  11. - name: "vote-service"
  12. port: 5000
  13. targetPort: 80
  14. nodePort: 31000
  15. selector:
  16. app: vote