109 lines
2.6 KiB
YAML
109 lines
2.6 KiB
YAML
image:
|
|
repository: ollama/ollama
|
|
pullPolicy: IfNotPresent
|
|
tag: 0.1.25@sha256:21824867532d4aaaecac4b0234c7ac6c8bb0144d86407bdd5e4141686c9fd2e4
|
|
uiImage:
|
|
repository: ghcr.io/ollama-webui/ollama-webui
|
|
pullPolicy: IfNotPresent
|
|
tag: main@sha256:d5a5c1126b5decbfbfcac4f2c3d0595e0bbf7957e3fcabc9ee802d3bc66db6d2
|
|
|
|
service:
|
|
main:
|
|
targetSelector: ui
|
|
ports:
|
|
main:
|
|
protocol: http
|
|
targetPort: 8080
|
|
port: 10686
|
|
targetSelector: ui
|
|
api:
|
|
enabled: true
|
|
targetSelector: main
|
|
ports:
|
|
api:
|
|
enabled: true
|
|
protocol: http
|
|
targetPort: 11434
|
|
port: 11434
|
|
targetSelector: main
|
|
|
|
ingress:
|
|
api:
|
|
targetSelector:
|
|
api: api
|
|
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
imageSelector: image
|
|
securityContext:
|
|
runAsUser: 0
|
|
runAsGroup: 0
|
|
runAsNonRoot: false
|
|
readOnlyRootFilesystem: false
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
type: http
|
|
path: /api/version
|
|
port: "{{ .Values.service.api.ports.api.port }}"
|
|
readiness:
|
|
enabled: true
|
|
type: http
|
|
path: /api/version
|
|
port: "{{ .Values.service.api.ports.api.port }}"
|
|
startup:
|
|
enabled: true
|
|
type: tcp
|
|
port: "{{ .Values.service.api.ports.api.port }}"
|
|
ui:
|
|
enabled: true
|
|
type: Deployment
|
|
podSpec:
|
|
containers:
|
|
ui:
|
|
primary: true
|
|
enabled: true
|
|
imageSelector: uiImage
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
type: http
|
|
path: /
|
|
port: "{{ .Values.service.main.ports.main.targetPort }}"
|
|
readiness:
|
|
enabled: true
|
|
type: http
|
|
path: /
|
|
port: "{{ .Values.service.main.ports.main.targetPort }}"
|
|
startup:
|
|
enabled: true
|
|
type: tcp
|
|
port: "{{ .Values.service.main.ports.main.targetPort }}"
|
|
env:
|
|
OLLAMA_API_BASE_URL: '{{ printf "http://%v-api:%v/api" (include "tc.v1.common.lib.chart.names.fullname" $) .Values.service.api.ports.api.targetPort }}'
|
|
WEBUI_SECRET_KEY:
|
|
secretKeyRef:
|
|
name: ollama-secrets
|
|
key: WEBUI_SECRET_KEY
|
|
|
|
persistence:
|
|
config:
|
|
enabled: true
|
|
targetSelector:
|
|
main:
|
|
main:
|
|
mountPath: "/root/.ollama"
|
|
data:
|
|
enabled: true
|
|
targetSelector:
|
|
ui:
|
|
ui:
|
|
mountPath: "/app/backend/data"
|
|
|
|
portal:
|
|
open:
|
|
enabled: true
|