1
0
Fork 0
molgenis-ops-docker-helm/nexus/v1.0.0/templates/service.yaml

20 lines
475 B
YAML
Raw Normal View History

apiVersion: v1
kind: Service
metadata:
2018-06-25 15:41:55 +02:00
name: {{ template "nexus.fullname" . }}
2018-06-22 23:00:54 +02:00
labels:
2018-06-25 15:11:29 +02:00
app: {{ template "nexus.name" . }}
chart: {{ template "nexus.chart" . }}
2018-06-22 23:00:54 +02:00
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
spec:
2018-06-25 15:11:29 +02:00
type: {{ .Values.service.type }}
ports:
2018-06-25 15:11:29 +02:00
- port: {{ .Values.service.port }}
2018-06-22 23:00:54 +02:00
targetPort: http
protocol: TCP
name: http
selector:
2018-06-25 15:11:29 +02:00
app: {{ template "nexus.name" . }}
2018-06-22 23:00:54 +02:00
release: {{ .Release.Name }}