Upgrade OpenWeb UI

This commit is contained in:
2026-05-16 22:22:33 +00:00
parent c837d04f95
commit aaf74cc00c
2 changed files with 12 additions and 3 deletions

View File

@@ -42,6 +42,13 @@ spec:
secretKeyRef: secretKeyRef:
name: open-webui-secrets name: open-webui-secrets
key: secretKey key: secretKey
- name: WEBUI_ADMIN_EMAIL
value: "{{ .adminEmail }}"
- name: WEBUI_ADMIN_PASSWORD
valueFrom:
secretKeyRef:
name: open-webui-secrets
key: adminPassword
volumeMounts: volumeMounts:
- name: data - name: data
mountPath: /app/backend/data mountPath: /app/backend/data
@@ -61,7 +68,7 @@ spec:
failureThreshold: 18 failureThreshold: 18
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /health path: /ready
port: http port: http
periodSeconds: 10 periodSeconds: 10
timeoutSeconds: 5 timeoutSeconds: 5

View File

@@ -3,18 +3,20 @@ is: open-webui
description: Open WebUI is a comprehensive, open-source web interface for AI models. description: Open WebUI is a comprehensive, open-source web interface for AI models.
Features a user-friendly design, supports various LLM runners, and operates entirely Features a user-friendly design, supports various LLM runners, and operates entirely
offline. Perfect for creating a ChatGPT-like experience with local or hosted models. offline. Perfect for creating a ChatGPT-like experience with local or hosted models.
version: 0.8.0 version: 0.9.5
icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/open-webui.svg icon: https://cdn.jsdelivr.net/gh/homarr-labs/dashboard-icons/svg/open-webui.svg
requires: [] requires: []
defaultConfig: defaultConfig:
namespace: open-webui namespace: open-webui
externalDnsDomain: '{{ .cloud.domain }}' externalDnsDomain: '{{ .cloud.domain }}'
image: ghcr.io/open-webui/open-webui:v0.8.0 image: ghcr.io/open-webui/open-webui:v0.9.5
port: 8080 port: 8080
storage: 10Gi storage: 10Gi
domain: chat.{{ .cloud.domain }} domain: chat.{{ .cloud.domain }}
vllmApiUrl: http://vllm-service.llm.svc.cluster.local:8000/v1 vllmApiUrl: http://vllm-service.llm.svc.cluster.local:8000/v1
enableAuth: true enableAuth: true
enableSignup: false enableSignup: false
adminEmail: '{{ .operator.email }}'
defaultSecrets: defaultSecrets:
- key: secretKey - key: secretKey
- key: adminPassword