mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 00:40:14 +01:00
* Replaced Helm Charts with Blue Atlas Charts * Fix Workflow * improve docs * update gitignore * Update docs * change values order, add hpa * change tls example domain * Default: Enable liveness and readiness * chore: bump base chart * apply requested changes * add Release fix * add: error handling * chore: cleanup and testing * fix: adjust Chart.yaml --------- Co-authored-by: hofq <gregorspalme@protonmail.com> Co-authored-by: Ruben Talstra <RubenTalstra1211@outlook.com>
17 lines
420 B
YAML
Executable file
17 lines
420 B
YAML
Executable file
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: {{ include "rag.fullname" . }}
|
|
labels:
|
|
{{- include "rag.labels" . | nindent 4 }}
|
|
annotations:
|
|
{{- toYaml .Values.service.annotations | nindent 4 }}
|
|
spec:
|
|
type: {{ .Values.service.type }}
|
|
ports:
|
|
- port: {{ .Values.service.port }}
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|
|
selector:
|
|
{{- include "rag.selectorLabels" . | nindent 4 }}
|