aboutsummaryrefslogtreecommitdiffstats
path: root/vagrant/tests/vnfs/edgex/helm/edgex/templates/export-client-service.yaml
blob: ec44fd510c3bf24c6231c16772ec447bbfde10f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
apiVersion: v1
kind: Service
metadata:
  labels:
    app: {{ .Values.service.exportClient.name }}
    release: {{ .Release.Name }}
  name:  {{ .Values.service.exportClient.name }}
spec:
  ports:
  - name: {{ .Values.service.exportClient.portName }}
    port: {{ .Values.service.exportClient.port }}
    targetPort: {{ .Values.service.exportClient.port }}
  selector:
    app: edgex-export-client
    release: {{ .Release.Name }}