aboutsummaryrefslogtreecommitdiffstats
path: root/helm/ves-client/templates/service.yaml
blob: ad67f9b75fcd05d2cc239f2ce25560c073046324 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
apiVersion: v1
kind: Service
metadata:
  name: {{ include "ves-client.fullname" . }}
  labels:
    {{- include "ves-client.labels" . | nindent 4 }}
spec:
  type: {{ .Values.service.type }}
  ports:
    - port: {{ .Values.service.port }}
      targetPort: {{ .Values.service.port }}
      protocol: TCP
      name: {{ .Values.service.port | quote }}
  selector:
    {{- include "ves-client.selectorLabels" . | nindent 4 }}