service.yaml 271 B

123456789101112131415161718
  1. apiVersion: v1
  2. kind: Service
  3. metadata:
  4. name: podinfo
  5. spec:
  6. type: ClusterIP
  7. selector:
  8. app: podinfo
  9. ports:
  10. - name: http
  11. port: 9898
  12. protocol: TCP
  13. targetPort: http
  14. - port: 9999
  15. targetPort: grpc
  16. protocol: TCP
  17. name: grpc