open-webui/kubernetes/helm/templates/ollama-statefulset.yaml

59 lines
1.8 KiB
YAML
Raw Normal View History

apiVersion: apps/v1
kind: StatefulSet
metadata:
2024-02-19 21:58:25 +01:00
name: {{ include "ollama.name" . }}
2024-02-19 22:23:36 +01:00
labels:
{{- include "ollama.labels" . | nindent 4 }}
spec:
2024-02-19 21:58:25 +01:00
serviceName: {{ include "ollama.name" . }}
replicas: {{ .Values.ollama.replicaCount }}
selector:
matchLabels:
2024-02-19 22:23:36 +01:00
{{- include "ollama.selectorLabels" . | nindent 6 }}
template:
metadata:
labels:
{{- include "ollama.labels" . | nindent 8 }}
spec:
containers:
2024-02-19 22:23:36 +01:00
- name: {{ include "ollama.name" . }}
2024-02-19 22:43:03 +01:00
{{- with .Values.ollama.image }}
image: {{ .repository }}:{{ .tag }}
imagePullPolicy: {{ .pullPolicy }}
{{- end }}
ports:
- name: http
containerPort: {{ .Values.ollama.service.containerPort }}
env:
{{- if .Values.ollama.gpu.enabled }}
- name: PATH
value: /usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
- name: LD_LIBRARY_PATH
value: /usr/local/nvidia/lib:/usr/local/nvidia/lib64
- name: NVIDIA_DRIVER_CAPABILITIES
value: compute,utility
2024-02-19 22:43:03 +01:00
{{- end }}
2024-02-19 22:23:36 +01:00
{{- with .Values.ollama.resources }}
resources: {{- toYaml . | nindent 10 }}
{{- end }}
volumeMounts:
- name: ollama-volume
mountPath: /root/.ollama
tty: true
{{- with .Values.ollama.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}
{{- end }}
2024-02-19 22:43:03 +01:00
{{- with .Values.ollama.tolerations }}
tolerations:
2024-02-19 22:43:03 +01:00
{{- toYaml . | nindent 8 }}
{{- end }}
volumeClaimTemplates:
- metadata:
name: ollama-volume
spec:
accessModes: [ "ReadWriteOnce" ]
resources:
requests:
2024-02-19 22:43:03 +01:00
storage: {{ .Values.ollama.persistence.size }}