aboutsummaryrefslogtreecommitdiffstats
path: root/robot/assets/helm/ves-client/templates/service.yaml
blob: a118388b8885ebd52afe00d914b04968b8ea5a5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
apiVersion: v1
kind: Service
metadata:
  name: {{ .Values.nameOverride }}
  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.name }}
  selector:
    {{ include "ves-client.selectorLabels" . | nindent 4 }}