helm-charts/playmaker/templates/service.yaml

16 lines
367 B
YAML
Raw Normal View History

2021-01-17 01:09:41 +00:00
apiVersion: v1
kind: Service
metadata:
name: {{ include "playmaker.fullname" . }}
labels:
{{- include "playmaker.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: 5000
protocol: TCP
name: http
selector:
{{- include "playmaker.selectorLabels" . | nindent 4 }}