blob: b9668d15e41f01525a4a12d82825c1eba69f3909 [file] [log] [blame]
Giorgi Lekveishvili3e45d0a2023-06-26 09:53:42 +04001apiVersion: v1
2kind: Service
3metadata:
4 name: {{ include "penpot.fullname" . }}-backend
5 namespace: {{ .Release.Namespace }}
6 labels:
7 {{- include "penpot.labels" . | nindent 4 }}
8spec:
9 type: {{ .Values.backend.service.type }}
10 ports:
11 - port: {{ .Values.backend.service.port }}
12 targetPort: http
13 protocol: TCP
14 name: http
15 selector:
16 {{- include "penpot.backendSelectorLabels" . | nindent 4 }}