-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
822 lines (755 loc) · 31.3 KB
/
Copy pathvalues.yaml
File metadata and controls
822 lines (755 loc) · 31.3 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
# ─── Custom Error Page ────────────────────────
errorPage:
enabled: true
replicaCount: 2
image:
repository: nginx
tag: alpine
pullPolicy: IfNotPresent # החלף ל-IfNotPresent ב-production
resources:
requests: { memory: "32Mi", cpu: "10m" }
limits: { memory: "64Mi", cpu: "50m" }
config:
title: "השירות אינו זמין כרגע"
errorCode: "503"
message: "אנו עובדים על תיקון בהקדם האפשרי"
supportUrl: "https://your-ticket-system.com/new"
supportText: "פתיחת קריאה לתמיכה"
autoRetrySeconds: 10
primaryColor: "#ffffff"
secondaryColor: "#ff0090"
backgroundColor: "#0f0f1a"
# ─── Ingress (override של Chart הרשמי) ────────
ingress-nginx:
enabled: true
controller:
kind: DaemonSet
hostPort:
enabled: true
service:
type: NodePort
config:
custom-http-errors: "502,503,504"
extraArgs:
default-backend-service: "owui/error-page"
# -- Override the chart name used in resource names. When set, this replaces the chart name
# in the generated resource names (which combine release name and chart name).
# Example: with nameOverride="custom" and release "prod", resources become "prod-custom"
nameOverride: ""
# -- Override the full resource name completely. When set, this takes precedence over nameOverride
# and the standard naming convention. Leave empty to use the standard naming pattern.
# See the "Resource Naming" section in the README for details on how resources are named.
fullnameOverride: ""
# -- Provide a namespace in place of the default release namespace
namespaceOverride: ""
ollama:
# -- Automatically install Ollama Helm chart from https://otwld.github.io/ollama-helm/. Use [Helm Values](https://github.com/otwld/ollama-helm/#helm-values) to configure
# @section -- External Tools configuration
enabled: true
# -- Override the Ollama subchart name. If not set, uses the release name with '-ollama' suffix for multiple instance support
# @section -- External Tools configuration
fullnameOverride: ""
# -- Example Ollama configuration with nvidia GPU enabled, automatically downloading a model, and deploying a PVC for model persistence
# ollama:
# gpu:
# enabled: true
# type: 'nvidia'
# number: 1
# models:
# pull:
# - llama3
# run:
# - llama3
# runtimeClassName: nvidia
# persistentVolume:
# enabled: true
# volumeName: "example-pre-existing-pv-created-by-smb-csi"
# -- A list of Ollama API endpoints. These can be added in lieu of automatically installing the Ollama Helm chart, or in addition to it.
# @section -- External Tools configuration
ollamaUrls: []
# -- Disables taking Ollama Urls from `ollamaUrls` list
# @section -- External Tools configuration
ollamaUrlsFromExtraEnv: false
pipelines:
# -- Automatically install Pipelines chart to extend Open WebUI functionality using Pipelines: https://github.com/open-webui/pipelines
# @section -- External Tools configuration
enabled: false
# -- Override the Pipelines subchart name. If not set, uses the release name with '-pipelines' suffix for multiple instance support
# @section -- External Tools configuration
fullnameOverride: ""
# -- This section can be used to pass required environment variables to your pipelines (e.g. Langfuse hostname)
# @section -- External Tools configuration
extraEnvVars: []
tika:
# -- Automatically install Apache Tika to extend Open WebUI
# @section -- External Tools configuration
enabled: false
websocket:
# -- Enables websocket support in Open WebUI with env `ENABLE_WEBSOCKET_SUPPORT`
# @section -- Websocket configuration
enabled: true
# -- Specifies the websocket manager to use with env `WEBSOCKET_MANAGER`: redis (default)
# @section -- Websocket configuration
manager: redis
# -- Override the Redis URL for websocket communication. If empty, automatically generates URL based on release name. Template: `redis://[:<password>@]<hostname>:<port>/<db>`
# @section -- Websocket configuration
url: ""
# -- Node selector for websocket pods
# @section -- Websocket configuration
nodeSelector: {}
redis:
# -- Enable redis installation
# @section -- Websocket configuration
enabled: true
# -- Redis labels
# @section -- Websocket configuration
labels: {}
# -- Redis annotations
# @section -- Websocket configuration
annotations: {}
pods:
# -- Redis pod labels
# @section -- Websocket configuration
labels: {}
# -- Redis pod annotations
# @section -- Websocket configuration
annotations: {}
image:
# -- Redis image repository
# @section -- Websocket configuration
repository: redis
# -- Redis image tag
# @section -- Websocket configuration
tag: 7.4.2-alpine3.21
# -- Redis image pull policy
# @section -- Websocket configuration
pullPolicy: IfNotPresent
# -- Redis command (overrides default)
# @section -- Websocket configuration
command: []
# -- Redis arguments (overrides default)
# @section -- Websocket configuration
args: []
# -- Redis resources
# @section -- Websocket configuration
resources: {}
service:
# -- Redis container/target port
# @section -- Websocket configuration
containerPort: 6379
# -- Redis service type
# @section -- Websocket configuration
type: ClusterIP
# -- Redis service labels
# @section -- Websocket configuration
labels: {}
# -- Redis service annotations
# @section -- Websocket configuration
annotations: {}
# -- Redis service port name. Istio needs this to be something like `tcp-redis`
# @section -- Websocket configuration
portName: http
# -- Redis service port
# @section -- Websocket configuration
port: 6379
# -- Redis service node port. Valid only when type is `NodePort`
# @section -- Websocket configuration
nodePort: ""
# -- Redis tolerations for pod assignment
# @section -- Websocket configuration
tolerations: []
# -- Redis affinity for pod assignment
# @section -- Websocket configuration
affinity: {}
# -- Redis container security context (certain specs are not allowed on a pod level), if readOnlyRootFilesystem is true, an emtpyDir will be mounted on the redis container
# @section -- Websocket configuration
containerSecurityContext: {}
# readOnlyRootFilesystem: true
# runAsNonRoot: true
# -- Redis pod security context
# @section -- Websocket configuration
podSecurityContext: {}
# runAsUser: 999
# runAsGroup: 1000
workload:
# -- Workload kind to use. Options are "Deployment", "StatefulSet".
# If not set, the chart will determine the kind based on persistence settings.
# NOTE: When using Deployment with local persistence and replicaCount > 1,
# ensure persistence.accessModes includes ReadWriteMany (RWX).
kind: ""
# -- Value of cluster domain
clusterDomain: cluster.local
# -- Additional custom labels to add to the Open WebUI deployment/statefulset metadata
extraLabels: {}
# -- Additional annotations to add to the Open WebUI deployment/statefulset metadata
annotations: {}
# -- Additional annotations to add to the Open WebUI pods
podAnnotations: {}
# -- Additional custom labels to add to the Open WebUI pods
podLabels: {}
# -- Number of Open WebUI replicas
replicaCount: 0
# -- Revision history limit for the workload manager (deployment).
revisionHistoryLimit: 10
# -- Priority class name for the Open WebUI pods
priorityClassName: ""
# -- Strategy for updating the workload manager: deployment or statefulset
strategy: {}
image:
# -- Open WebUI image repository
# @section -- Image configuration
repository: ghcr.io/open-webui/open-webui
# -- Open WebUI image tag (Open WebUI image tags can be found here: https://github.com/open-webui/open-webui)
# @section -- Image configuration
tag: ""
# -- Open WebUI image pull policy
# @section -- Image configuration
pullPolicy: "IfNotPresent"
# -- Use a slim version of the Open WebUI image
# @section -- Image configuration
useSlim: false
# -- Configure imagePullSecrets to use private registry
# ref: <https://kubernetes.io/docs/tasks/configure-pod-container/pull-image-private-registry>
# @section -- Image configuration
imagePullSecrets: []
# imagePullSecrets:
# - name: myRegistryKeySecretName
# -- Open WebUI container command (overrides default entrypoint)
command: []
# -- Open WebUI container arguments (overrides default)
args: []
serviceAccount:
# -- Enable service account creation
# @section -- Service Account configuration
enable: true
# -- If create is set to false, set `name` to existing service account name
# @section -- Service Account configuration
create: true
# -- Service account name to use. If `ServiceAccount.create` is false, this assumes an existing service account exists with the set name. If not set and `serviceAccount.create` is true, a name is generated using the fullname template.
# @section -- Service Account configuration
name: ""
# -- Additional annotations to add to the ServiceAccount
# @section -- Service Account configuration
annotations: {}
# -- Automount service account token for the Open WebUI pods
# @section -- Service Account configuration
automountServiceAccountToken: false
# -- Probe for liveness of the Open WebUI container
# ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes>
# @section -- Probes configuration
livenessProbe: {}
# livenessProbe:
# httpGet:
# path: /health
# port: http
# failureThreshold: 1
# periodSeconds: 10
# -- Probe for readiness of the Open WebUI container
# ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes>
# @section -- Probes configuration
readinessProbe: {}
# readinessProbe:
# httpGet:
# path: /health/db
# port: http
# failureThreshold: 1
# periodSeconds: 10
# -- Probe for startup of the Open WebUI container
# ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes>
# @section -- Probes configuration
startupProbe: {}
# startupProbe:
# httpGet:
# path: /health
# port: http
# initialDelaySeconds: 30
# periodSeconds: 5
# failureThreshold: 20
# -- Resource requests and limits for the Open WebUI container
resources: {}
copyAppData:
# -- Open WebUI copy-app-data init container command (overrides default)
command: []
# -- Open WebUI copy-app-data init container arguments (overrides default)
args: []
# -- Resource requests and limits for the Open WebUI copy-app-data init container
resources: {}
managedCertificate:
# -- Enable GKE Managed Certificate for Ingress TLS
# @section -- Ingress configuration
enabled: false
# -- Name of the Managed Certificate resource to create
# @section -- Ingress configuration
name: "mydomain-chat-cert" # You can override this name if needed
# -- Domains to include in the Managed Certificate
# @section -- Ingress configuration
domains:
- chat.example.com # update to your real domain
ingress:
# -- Enable Ingress controller for Open WebUI
# @section -- Ingress configuration
enabled: true
# -- Ingress class to use, e.g., for GKE Ingress use "gce", for NGINX Ingress use "nginx". If using an Ingress class other than the default, ensure your cluster has the corresponding Ingress controller installed and configured.
# @section -- Ingress configuration
class: "nginx"
# -- Use appropriate annotations for your Ingress controller, e.g., for NGINX:
# @section -- Ingress configuration
annotations:
nginx.ingress.kubernetes.io/custom-http-errors: "502,503,504"
nginx.ingress.kubernetes.io/default-backend: "owui-error-page"
# # Example for GKE Ingress
# kubernetes.io/ingress.class: "gce"
# kubernetes.io/ingress.global-static-ip-name: "open-webui-external-ip" # you need to create this address in GCP console
# # Force HTTP to redirect to HTTPS
# nginx.ingress.kubernetes.io/force-ssl-redirect: "true"
# nginx.ingress.kubernetes.io/ssl-redirect: "true"
# nginx.ingress.kubernetes.io/permanent-redirect: "https://chat.example.com"
# networking.gke.io/managed-certificates: "mydomain-chat-cert"
# # nginx.ingress.kubernetes.io/rewrite-target: /
# -- Host for the Ingress record
# @section -- Ingress configuration
host: localhost # update to your real domain
# -- Additional hosts for the Ingress record
# @section -- Ingress configuration
additionalHosts: []
# -- TLS configuration for the Ingress resource
# @section -- Ingress configuration
tls: false
# -- TLS secret name for the Ingress record
# @section -- Ingress configuration
existingSecret: ""
# -- Additional custom labels to add to the Ingress metadata
# @section -- Ingress configuration
extraLabels: {}
# extraLabels:
# app.kubernetes.io/environment: "staging"
route:
# -- Enables or disables the route
enabled: false
# -- Set the route apiVersion, e.g. gateway.networking.k8s.io/v1 or gateway.networking.k8s.io/v1alpha2
apiVersion: gateway.networking.k8s.io/v1
# -- Set the route kind
# Valid options are GRPCRoute, HTTPRoute, TCPRoute, TLSRoute, UDPRoute
kind: HTTPRoute
# -- Annotations to add to the route
annotations:
nginx.ingress.kubernetes.io/custom-http-errors: "502,503,504"
nginx.ingress.kubernetes.io/default-backend: "uptime-kuma-bridge"
# -- Labels to add to the route
labels: {}
# -- Hostnames to match for the route
hostnames: []
# - "open-webui.example.com"
# -- References to the parent resources (e.g. Gateway)
parentRefs: []
# - name: open-webui-gw
# -- Enables HTTPS redirect for the route
httpsRedirect: false
matches:
- path:
# -- Path match type. Note that custom path prefix is not supported in Open WebUI, so any non-default value will break. See https://github.com/open-webui/open-webui/discussions/3431
type: PathPrefix
# -- Path match value
value: /
# -- Filters define the filters that are applied to requests that match this rule.
filters: []
# -- Additional custom rules that can be added to the route
additionalRules: []
persistence:
# -- Enable persistence using PVC for Open WebUI data
# @section -- Persistence configuration
enabled: true
# -- Size of the Open WebUI PVC
# @section -- Persistence configuration
size: 0.5Gi
# -- Use existingClaim if you want to re-use an existing Open WebUI PVC instead of creating a new one
# @section -- Persistence configuration
existingClaim: "open-webui-data-pvc"
# -- Subdirectory of Open WebUI PVC to mount. Useful if root directory is not empty.
# @section -- Persistence configuration
subPath: ""
# -- If using multiple replicas, you must update accessModes to ReadWriteMany
# @section -- Persistence configuration
accessModes:
- ReadWriteOnce
# -- Storage class of the Open WebUI PVC
# @section -- Persistence configuration
storageClass: ""
# -- Selector to match to get the volume bound to the claim
# @section -- Persistence configuration
selector: {}
# -- Additional annotations to add to the PVC
# @section -- Persistence configuration
annotations: {}
# -- Sets the storage provider, availables values are `local`, `s3`, `gcs` or `azure`
# @section -- Persistence configuration
provider: local
s3:
# -- Sets the access key ID for S3 storage
# @section -- Amazon S3 Storage configuration
accessKey: ""
# -- Sets the secret access key for S3 storage (ignored if secretKeyExistingSecret is set)
# @section -- Amazon S3 Storage configuration
secretKey: ""
# -- Set the secret access key for S3 storage from existing k8s secret
# @section -- Amazon S3 Storage configuration
accessKeyExistingSecret: ""
# -- Set the secret access key for S3 storage from existing k8s secret key
# @section -- Amazon S3 Storage configuration
accessKeyExistingAccessKey: ""
# -- Set the secret key for S3 storage from existing k8s secret
# @section -- Amazon S3 Storage configuration
secretKeyExistingSecret: ""
# -- Set the secret key for S3 storage from existing k8s secret key
# @section -- Amazon S3 Storage configuration
secretKeyExistingSecretKey: ""
# -- Sets the endpoint url for S3 storage
# @section -- Amazon S3 Storage configuration
endpointUrl: ""
# -- Sets the region name for S3 storage
# @section -- Amazon S3 Storage configuration
region: ""
# -- Sets the bucket name for S3 storage
# @section -- Amazon S3 Storage configuration
bucket: ""
# -- Sets the key prefix for a S3 object
# @section -- Amazon S3 Storage configuration
keyPrefix: ""
gcs:
# -- Contents of Google Application Credentials JSON file (ignored if appCredentialsJsonExistingSecret is set). Optional - if not provided, credentials will be taken from the environment. User credentials if run locally and Google Metadata server if run on a Google Compute Engine. File can be generated for a service account following this guide: https://developers.google.com/workspace/guides/create-credentials#service-account
# @section -- Google Cloud Storage configuration
appCredentialsJson: ""
# -- Set the Google Application Credentials JSON file for Google Cloud Storage from existing secret
# @section -- Google Cloud Storage configuration
appCredentialsJsonExistingSecret: ""
# -- Set the Google Application Credentials JSON file for Google Cloud Storage from existing secret key
# @section -- Google Cloud Storage configuration
appCredentialsJsonExistingSecretKey: ""
# -- Sets the bucket name for Google Cloud Storage. Bucket must already exist
# @section -- Google Cloud Storage configuration
bucket: ""
azure:
# -- Sets the endpoint URL for Azure Storage
# @section -- Azure Storage configuration
endpointUrl: ""
# -- Sets the container name for Azure Storage
# @section -- Azure Storage configuration
container: ""
# -- Set the access key for Azure Storage (ignored if keyExistingSecret is set). Optional - if not provided, credentials will be taken from the environment. User credentials if run locally and Managed Identity if run in Azure services
# @section -- Azure Storage configuration
key: ""
# -- Set the access key for Azure Storage from existing secret
# @section -- Azure Storage configuration
keyExistingSecret: ""
# -- Set the access key for Azure Storage from existing secret key
# @section -- Azure Storage configuration
keyExistingSecretKey: ""
# -- Node labels for pod assignment.
nodeSelector: {}
# -- Tolerations for pod assignment
tolerations: []
# -- Affinity for pod assignment
affinity: {}
# -- Topology Spread Constraints for pod assignment
topologySpreadConstraints: []
# -- HostAliases to be added to hosts-file of each container
hostAliases: []
service:
# -- Service type to expose Open WebUI pods to cluster. Options are ClusterIP, NodePort, LoadBalancer, or ExternalName
# @section -- Service configuration
type: ClusterIP
# -- Additional annotations to add to the Service
# @section -- Service configuration
annotations: {}
# -- Port to expose Open WebUI service on
# @section -- Service configuration
port: 80
# -- Target port for the Open WebUI container
# @section -- Service configuration
containerPort: 8080
# -- Node port to use if service type is NodePort
# @section -- Service configuration
nodePort: ""
# -- Additional custom labels to add to the Service metadata
# @section -- Service configuration
labels: {}
# -- Load balancer class to use if service type is LoadBalancer (e.g., for GKE use "gce")
# @section -- Service configuration
loadBalancerClass: ""
# -- Enables the use of OpenAI APIs
# @section -- OpenAI API configuration
enableOpenaiApi: true
# -- OpenAI base API URL to use. Defaults to the Pipelines service endpoint when Pipelines are enabled, and "https://api.openai.com/v1" if Pipelines are not enabled and this value is blank
# @section -- OpenAI API configuration
openaiBaseApiUrl: "https://api.openai.com/v1"
# -- OpenAI base API URLs to use. Overwrites the value in openaiBaseApiUrl if set
# @section -- OpenAI API configuration
openaiBaseApiUrls: []
# - "https://api.openai.com/v1"
# - "https://api.company.openai.com/v1"
# -- OpenAI API key to use. Default API key value for Pipelines if `openaiBaseApiUrl` is blank. Should be updated in a production deployment, or be changed to the required API key if not using Pipelines
# @section -- OpenAI API configuration
openaiApiKey: "0p3n-w3bu!"
# -- List of OpenAI API keys for each OpenAI base API URLs to use. The number of keys must match the number of URLs in `openaiBaseApiUrls` and respect the same order. If `pipelines.enabled` is true, it needs one more key (so the list length should be openaiBaseApiUrls length + 1) and the first key will be used for Pipelines.
# @section -- OpenAI API configuration
openaiApiKeys: []
# - "0p3n-w3bu!"
# - "sk-4389759834759834"
# -- Configure database URL, needed to work with Postgres (example: `postgresql://<user>:<password>@<service>:<port>/<database>`),
# leave empty to use the default sqlite database. Alternatively, use extraEnvVars to construct the database URL by setting the `DATABASE_TYPE`, `DATABASE_USER`, `DATABASE_PASSWORD`, `DATABASE_HOST`, `DATABASE_PORT`and `DATABASE_NAME` environment variables. Each DATABASE_* var must be set or database will default to sqlite.
databaseUrl: ""
# -- Env vars added to the Open WebUI deployment. Most up-to-date environment variables can be found here: https://docs.openwebui.com/getting-started/env-configuration. Variables can be defined as list or map style.
extraEnvVars: []
# - name: OPENAI_API_KEY
# valueFrom:
# secretKeyRef:
# name: pipelines-api-key
# key: api-key
# - name: OPENAI_API_KEY
# valueFrom:
# secretKeyRef:
# name: openai-api-key
# key: api-key
# - name: OLLAMA_DEBUG
# value: "1"
#
# OPENAI_API_KEY:
# valueFrom:
# secretKeyRef:
# name: pipelines-api-key
# key: api-key
# OPENAI_API_KEY:
# valueFrom:
# secretKeyRef:
# name: openai-api-key
# key: api-key
# OLLAMA_DEBUG: "1"
# -- Env vars added to the Open WebUI deployment, common across environments. Most up-to-date environment variables can be found here: https://docs.openwebui.com/getting-started/env-configuration/ (caution: environment variables defined in both `extraEnvVars` and `commonEnvVars` will result in a conflict. Avoid duplicates)
commonEnvVars: []
# - name: RAG_EMBEDDING_ENGINE
# value: "openai"
# -- Env vars added from configmap or secret to the Open WebUI deployment. Most up-to-date environment variables can be found here: https://docs.openwebui.com/getting-started/env-configuration/ (caution: `extraEnvVars` will take precedence over the value from `extraEnvFrom`)
extraEnvFrom: []
# - configMapRef:
# name: my-config
# - secretRef:
# name: my-secret
# -- Configure runtime class
# ref: <https://kubernetes.io/docs/concepts/containers/runtime-class/>
runtimeClassName: ""
# -- Configure container volume mounts
# ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/>
volumeMounts:
initContainer: []
# - name: ""
# mountPath: ""
container: []
# - name: ""
# mountPath: ""
# -- Additional init containers to add to the deployment/statefulset
# ref: <https://kubernetes.io/docs/concepts/workloads/pods/init-containers/>
extraInitContainers: []
# - name: custom-init
# image: busybox:latest
# command: ['sh', '-c', 'echo "Custom init container running"']
# volumeMounts:
# - name: data
# mountPath: /data
# -- Configure pod volumes
# ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-volume-storage/>
volumes: []
# - name: ""
# configMap:
# name: ""
# - name: ""
# emptyDir: {}
# -- Configure pod security context
# ref: <https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-container>
podSecurityContext: {}
# fsGroupChangePolicy: Always
# sysctls: []
# supplementalGroups: []
# fsGroup: 1001
# -- Configure container security context
# ref: <https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-containe>
containerSecurityContext: {}
# runAsUser: 1001
# runAsGroup: 1001
# runAsNonRoot: true
# privileged: false
# allowPrivilegeEscalation: false
# readOnlyRootFilesystem: false
# capabilities:
# drop:
# - ALL
# seccompProfile:
# type: "RuntimeDefault"
sso:
# -- **Enable SSO authentication globally** must enable to use SSO authentication
# @section -- SSO Configuration
enabled: false
# -- Enable account creation when logging in with OAuth (distinct from regular signup)
# @section -- SSO Configuration
enableSignup: false
# -- Allow logging into accounts that match email from OAuth provider (considered insecure)
# @section -- SSO Configuration
mergeAccountsByEmail: false
# -- Enable OAuth role management through access token roles claim
# @section -- SSO Configuration
enableRoleManagement: false
# -- Enable OAuth group management through access token groups claim
# @section -- SSO Configuration
enableGroupManagement: false
google:
# -- Enable Google OAuth
# @section -- Google OAuth configuration
enabled: false
# -- Google OAuth client ID
# @section -- Google OAuth configuration
clientId: ""
# -- Google OAuth client secret (ignored if clientExistingSecret is set)
# @section -- Google OAuth configuration
clientSecret: ""
# -- Google OAuth client secret from existing secret
# @section -- Google OAuth configuration
clientExistingSecret: ""
# -- Google OAuth client secret key from existing secret
# @section -- Google OAuth configuration
clientExistingSecretKey: ""
microsoft:
# -- Enable Microsoft OAuth
# @section -- Microsoft OAuth configuration
enabled: false
# -- Microsoft OAuth client ID
# @section -- Microsoft OAuth configuration
clientId: ""
# -- Microsoft OAuth client secret (ignored if clientExistingSecret is set)
# @section -- Microsoft OAuth configuration
clientSecret: ""
# -- Microsoft OAuth client secret from existing secret
# @section -- Microsoft OAuth configuration
clientExistingSecret: ""
# -- Microsoft OAuth client secret key from existing secret
# @section -- Microsoft OAuth configuration
clientExistingSecretKey: ""
# -- Microsoft tenant ID - use 9188040d-6c67-4c5b-b112-36a304b66dad for personal accounts
# @section -- Microsoft OAuth configuration
tenantId: ""
github:
# -- Enable GitHub OAuth
# @section -- GitHub OAuth configuration
enabled: false
# -- GitHub OAuth client ID
# @section -- GitHub OAuth configuration
clientId: ""
# -- GitHub OAuth client secret (ignored if clientExistingSecret is set)
# @section -- GitHub OAuth configuration
clientSecret: ""
# -- GitHub OAuth client secret from existing secret
# @section -- GitHub OAuth configuration
clientExistingSecret: ""
# -- GitHub OAuth client secret key from existing secret
# @section -- GitHub OAuth configuration
clientExistingSecretKey: ""
oidc:
# -- Enable OIDC authentication
# @section -- OIDC configuration
enabled: false
# -- OIDC client ID
# @section -- OIDC configuration
clientId: ""
# -- OIDC client secret (ignored if clientExistingSecret is set)
# @section -- OIDC configuration
clientSecret: ""
# -- OICD client secret from existing secret
# @section -- OIDC configuration
clientExistingSecret: ""
# -- OIDC client secret key from existing secret
# @section -- OIDC configuration
clientExistingSecretKey: ""
# -- OIDC provider well known URL
# @section -- OIDC configuration
providerUrl: ""
# -- Name of the provider to show on the UI
# @section -- OIDC configuration
providerName: "SSO"
# -- Scopes to request (space-separated).
# @section -- OIDC configuration
scopes: "openid email profile"
roleManagement:
# -- The claim that contains the roles (can be nested, e.g., user.roles)
# @section -- Role management configuration
rolesClaim: "roles"
# -- Comma-separated list of roles allowed to log in (receive open webui role user)
# @section -- Role management configuration
allowedRoles: ""
# -- Comma-separated list of roles allowed to log in as admin (receive open webui role admin)
# @section -- Role management configuration
adminRoles: ""
groupManagement:
# -- The claim that contains the groups (can be nested, e.g., user.memberOf)
# @section -- SSO Configuration
groupsClaim: "groups"
trustedHeader:
# -- Enable trusted header authentication
# @section -- SSO trusted header authentication
enabled: false
# -- Header containing the user's email address
# @section -- SSO trusted header authentication
emailHeader: ""
# -- Header containing the user's name (optional, used for new user creation)
# @section -- SSO trusted header authentication
nameHeader: ""
# -- Extra resources to deploy with Open WebUI
extraResources:
- apiVersion: v1
kind: Service
metadata:
name: uptime-kuma-bridge
namespace: owui
spec:
type: ExternalName
externalName: uptime-kuma.monitoring.svc.cluster.local
ports:
- port: 3001
# Configure Application logging levels (see. https://docs.openwebui.com/getting-started/advanced-topics/logging#-logging-levels-explained)
logging:
# -- Set the global log level ["notset", "debug", "info" (default), "warning", "error", "critical"]
# @section -- Logging configuration
level: ""
# Optional granularity: override log levels per subsystem/component
# if not set, it will use the global level (see. https://docs.openwebui.com/getting-started/advanced-topics/logging#%EF%B8%8F-appbackend-specific-logging-levels)
components:
# -- Set the log level for the Audio processing component
# @section -- Logging configuration
audio: ""
# -- Set the log level for the ComfyUI Integration component
# @section -- Logging configuration
comfyui: ""
# -- Set the log level for the Configuration Management component
# @section -- Logging configuration
config: ""
# -- Set the log level for the Database Operations (Peewee) component
# @section -- Logging configuration
db: ""
# -- Set the log level for the Image Generation component
# @section -- Logging configuration
images: ""
# -- Set the log level for the Main Application Execution component
# @section -- Logging configuration
main: ""
# -- Set the log level for the Model Management component
# @section -- Logging configuration
models: ""
# -- Set the log level for the Ollama Backend Integration component
# @section -- Logging configuration
ollama: ""
# -- Set the log level for the OpenAI API Integration component
# @section -- Logging configuration
openai: ""
# -- Set the log level for the Retrieval-Augmented Generation (RAG) component
# @section -- Logging configuration
rag: ""
# -- Set the log level for the Authentication Webhook component
# @section -- Logging configuration
webhook: ""