You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
687 B
24 lines
687 B
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "langfuse.fullname" . }}-web
|
|
labels:
|
|
{{- include "langfuse.labels" . | nindent 4 }}
|
|
{{- with .Values.langfuse.web.service.additionalLabels }}
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
{{- with .Values.langfuse.web.service.annotations }}
|
|
annotations:
|
|
{{- toYaml . | nindent 4 }}
|
|
{{- end }}
|
|
spec:
|
|
type: {{ .Values.langfuse.web.service.type }}
|
|
ports:
|
|
- port: {{ .Values.langfuse.web.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
nodePort: {{ .Values.langfuse.web.service.nodePort }}
|
|
selector:
|
|
{{- include "langfuse.selectorLabels" . | nindent 4 }}
|
|
app: web
|
|
|