k8s/check-charts/harbor/templates/redis/service.yaml

14 lines
300 B
YAML
Raw Normal View History

2023-11-16 19:42:02 +10:00
{{- if eq .Values.redis.type "internal" -}}
apiVersion: v1
kind: Service
metadata:
name: {{ template "harbor.redis" . }}
labels:
{{ include "harbor.labels" . | indent 4 }}
spec:
ports:
- port: 6379
selector:
{{ include "harbor.matchLabels" . | indent 4 }}
component: redis
{{- end -}}