1
0
Fork 0
molgenis-ops-docker-helm/charts/molgenis-httpd/templates/service.yaml

19 lines
451 B
YAML
Raw Normal View History

apiVersion: v1
kind: Service
metadata:
2018-05-29 10:10:05 +02:00
name: {{ template "httpd.fullname" . }}
labels:
2018-05-29 10:10:05 +02:00
app: {{ template "httpd.name" . }}
chart: {{ template "httpd.chart" . }}
release: {{ .Release.Name }}
heritage: {{ .Release.Service }}
spec:
2018-06-23 15:27:03 +02:00
type: {{ .Values.service.type }}
ports:
2018-06-27 22:06:41 +02:00
- name: {{ .Values.service.name }}
port: {{ .Values.service.port }}
selector:
2018-05-29 10:10:05 +02:00
app: {{ template "httpd.name" . }}
release: {{ .Release.Name }}