Files
ollama-plus/apps/values/openwebui.yaml
T

40 lines
1.0 KiB
YAML
Raw Normal View History

2025-09-12 13:46:12 -04:00
image:
repository: ghcr.io/open-webui/open-webui
tag: "main"
pullPolicy: IfNotPresent
service:
2025-09-13 18:28:59 -04:00
type: ClusterIP # use Ingress for external access
2025-09-12 13:46:12 -04:00
persistence:
enabled: true
size: 5Gi
ingress:
2025-09-13 18:28:59 -04:00
enabled: true # expose via nginx ingress
2025-09-12 13:46:12 -04:00
className: nginx
hosts:
- host: openwebui.local
paths:
- path: /
pathType: Prefix
2025-09-13 18:28:59 -04:00
tls: [] # no https for local/minikube
2025-09-12 13:46:12 -04:00
# NO SECRETS!!!
extraEnvVars:
- name: OLLAMA_BASE_URL
value: "https://mlep.ion606.com"
2025-09-12 21:58:35 -04:00
# postgres === primary db
2025-09-12 13:46:12 -04:00
- name: DATABASE_URL
value: "postgresql://postgres:mypassword@postgresql-primary.ai.svc.cluster.local:5432/openwebui"
# store vectors in pgvector (on the same postgres)
- name: VECTOR_DB
value: "pgvector"
- name: PGVECTOR_DB_URL
value: "postgresql://postgres:mypassword@postgresql-primary.ai.svc.cluster.local:5432/openwebui"
- name: PGVECTOR_CREATE_EXTENSION
value: "true"
2025-09-12 21:58:35 -04:00
# no bish
# - name: WEBUI_URL
# value: "http://openwebui.local"