mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-27 05:38:51 +01:00
* chore: adding helm chart for librechat Signed-off-by: Noah Ispas (iamNoah1) <noahispas@gmail.com> * chore: delete docs, move to docs repo --------- Signed-off-by: Noah Ispas (iamNoah1) <noahispas@gmail.com> Co-authored-by: Noah Ispas (iamNoah1) <noahispas@gmail.com>
15 lines
367 B
YAML
15 lines
367 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "librechat.fullname" . }}
|
|
labels:
|
|
{{- include "librechat.labels" . | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "librechat.selectorLabels" . | nindent 4 }}
|