master-service.yaml 683 B

12345678910111213141516171819202122232425
  1. apiVersion: v1
  2. kind: Service
  3. metadata:
  4. name: {{ template "seaweedfs.name" . }}-master
  5. namespace: {{ .Release.Namespace }}
  6. labels:
  7. app: {{ template "seaweedfs.name" . }}
  8. component: master
  9. annotations:
  10. service.alpha.kubernetes.io/tolerate-unready-endpoints: "true"
  11. spec:
  12. clusterIP: None
  13. publishNotReadyAddresses: true
  14. ports:
  15. - name: "swfs-master"
  16. port: {{ .Values.master.port }}
  17. targetPort: {{ .Values.master.port }}
  18. protocol: TCP
  19. - name: "swfs-master-grpc"
  20. port: {{ .Values.master.grpcPort }}
  21. targetPort: {{ .Values.master.grpcPort }}
  22. protocol: TCP
  23. selector:
  24. app: {{ template "seaweedfs.name" . }}
  25. component: master