mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-23 20:00:15 +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>
15 lines
367 B
YAML
Executable file
15 lines
367 B
YAML
Executable file
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: "{{ include "rag.fullname" . }}-test-connection"
|
|
labels:
|
|
{{- include "rag.labels" . | nindent 4 }}
|
|
annotations:
|
|
"helm.sh/hook": test
|
|
spec:
|
|
containers:
|
|
- name: wget
|
|
image: busybox
|
|
command: ['wget']
|
|
args: ['{{ include "rag.fullname" . }}:{{ .Values.service.port }}']
|
|
restartPolicy: Never
|