-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathopenwebui.yaml
72 lines (50 loc) · 1.19 KB
/
openwebui.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
image:
repository: "ghcr.io/open-webui/open-webui"
tag: "main"
pullPolicy: Always
replicas: 1
containerPort: 8080
strategy: RollingUpdate
resources:
requests:
cpu: "500m"
memory: "200Mi"
limits:
cpu: 5000m
memory: "10Gi"
probe:
enabled: false
livenessProbe:
enabled: false
secretEnabled: false
podDisruptionBudgetEnabled: true
spreadAcrossNodes: false
nodePortEnabled: false
monitor:
enabled: false
vars:
OLLAMA_BASE_URL: "http://ollama:11434"
DEFAULT_MODELS: deepseek-r1:14b
WEBUI_URL: https://openweb-ui.domains.leaf.cloud/
ENABLE_RAG_WEB_SEARCH: True
RAG_WEB_SEARCH_ENGINE: "searxng"
RAG_WEB_SEARCH_RESULT_COUNT: 5
RAG_WEB_SEARCH_CONCURRENT_REQUESTS: 10
SEARXNG_QUERY_URL: "http://searxng:8080/search?q=<query>"
volumes:
- name: storage
path: /app/backend/data
size: 5Gi
storageClass: deafault
ingress:
annotations:
cert-manager.io/cluster-issuer: "letsencrypt-prod"
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/proxy-body-size: "100m"
host: openweb-ui.domains.leaf.cloud
tlsEnabled: true
ingressClassName: nginx
ports:
- name: openweb-ui
containerPort: 8080
protocol: TCP