apiVersion: v1 kind: Service metadata: name: {{ include "redis.name" . }} namespace: {{ .Release.Namespace }} labels: {{- include "redis.labels" . | nindent 4 }} spec: type: {{ .Values.redis.service.type }} ports: - port: {{ .Values.redis.service.port }} targetPort: 6379 protocol: TCP selector: {{- include "redis.selectorLabels" . | nindent 4 }}