mirror of
https://github.com/penpot/penpot-helm.git
synced 2024-12-22 13:43:01 -05:00
17 lines
422 B
YAML
17 lines
422 B
YAML
|
apiVersion: v1
|
||
|
kind: Service
|
||
|
metadata:
|
||
|
name: {{ include "penpot.fullname" . }}
|
||
|
namespace: {{ .Release.Namespace }}
|
||
|
labels:
|
||
|
{{- include "penpot.labels" . | nindent 4 }}
|
||
|
spec:
|
||
|
type: {{ .Values.frontend.service.type }}
|
||
|
ports:
|
||
|
- port: {{ .Values.frontend.service.port }}
|
||
|
targetPort: http
|
||
|
protocol: TCP
|
||
|
name: http
|
||
|
selector:
|
||
|
{{- include "penpot.frontendSelectorLabels" . | nindent 4 }}
|