Add ollama chart 1.1.2

This commit is contained in:
wbsong111
2025-01-09 09:13:56 +09:00
parent d0d3169948
commit 9fea5b4efb
18 changed files with 1748 additions and 0 deletions
@@ -0,0 +1,17 @@
---
apiVersion: v1
kind: Pod
metadata:
name: "{{ include "ollama.fullname" . }}-test-connection"
namespace: {{ include "ollama.namespace" . }}
labels:
{{- include "ollama.labels" . | nindent 4 }}
annotations:
"helm.sh/hook": test
spec:
containers:
- name: wget
image: busybox
command: ['wget']
args: ['{{ include "ollama.fullname" . }}:{{ .Values.service.port }}']
restartPolicy: Never