Add langflow-ide chart 0.1.0

This commit is contained in:
wbsong111
2024-12-18 09:41:24 +09:00
parent b406939c2d
commit a269862422
77 changed files with 8846 additions and 0 deletions
@@ -0,0 +1,41 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "langflow.fullname" . }}
labels:
app: {{ template "langflow.name" . }}
chart: {{ template "langflow.chart" . }}
release: {{ .Release.Name }}
spec:
type: {{ .Values.langflow.frontend.service.type }}
ports:
- port: {{ .Values.langflow.frontend.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
app: {{ template "langflow.name" . }}
chart: {{ template "langflow.chart" . }}
release: {{ .Release.Name }}
langflow-scope: "frontend"
---
apiVersion: v1
kind: Service
metadata:
name: {{ include "langflow.fullname" . }}-backend
labels:
app: {{ template "langflow.name" . }}
chart: {{ template "langflow.chart" . }}
release: {{ .Release.Name }}
spec:
type: {{ .Values.langflow.backend.service.type }}
ports:
- port: {{ .Values.langflow.backend.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
app: {{ template "langflow.name" . }}
chart: {{ template "langflow.chart" . }}
release: {{ .Release.Name }}
langflow-scope: "backend"