service.yaml 394 B

123456789101112131415161718
  1. {{- if .Values.redis.enabled -}}
  2. apiVersion: v1
  3. kind: Service
  4. metadata:
  5. name: {{ template "podinfo.fullname" . }}-redis
  6. labels:
  7. app: {{ template "podinfo.fullname" . }}-redis
  8. spec:
  9. type: ClusterIP
  10. selector:
  11. app: {{ template "podinfo.fullname" . }}-redis
  12. ports:
  13. - name: redis
  14. port: 6379
  15. protocol: TCP
  16. targetPort: redis
  17. appProtocol: redis
  18. {{- end }}