新增 AI 部署方案,备用

This commit is contained in:
Sense T
2025-01-29 07:30:49 +08:00
parent 322b0781ac
commit 483ddad461
29 changed files with 2160 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "llama-cpp.fullname" . }}-test-connection"
labels:
{{- include "llama-cpp.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "llama-cpp.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never