blob: ac0708e0925af32f259b3fec3e0f710a6138d105 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
apiVersion: v1
kind: Service
metadata:
name: {{ include "payloads-processor.fullname" . }}
labels:
{{- include "payloads-processor.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "payloads-processor.selectorLabels" . | nindent 4 }}
|