open webui update

This commit is contained in:
Philip Haupt
2025-12-22 12:08:09 +01:00
parent d292546baf
commit e1c86f25ae
3 changed files with 22 additions and 14 deletions

View File

@@ -7,8 +7,8 @@ metadata:
app.kubernetes.io/instance: open-webui app.kubernetes.io/instance: open-webui
app.kubernetes.io/managed-by: Helm app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: open-webui app.kubernetes.io/name: open-webui
app.kubernetes.io/version: 0.6.40 app.kubernetes.io/version: 0.6.42
helm.sh/chart: open-webui-8.18.0 helm.sh/chart: open-webui-8.21.0
name: existing-sa name: existing-sa
namespace: open-webui namespace: open-webui
--- ---
@@ -33,8 +33,8 @@ metadata:
app.kubernetes.io/instance: open-webui app.kubernetes.io/instance: open-webui
app.kubernetes.io/managed-by: Helm app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: open-webui app.kubernetes.io/name: open-webui
app.kubernetes.io/version: 0.6.40 app.kubernetes.io/version: 0.6.42
helm.sh/chart: open-webui-8.18.0 helm.sh/chart: open-webui-8.21.0
name: open-webui name: open-webui
namespace: open-webui namespace: open-webui
spec: spec:
@@ -159,8 +159,8 @@ metadata:
app.kubernetes.io/instance: open-webui app.kubernetes.io/instance: open-webui
app.kubernetes.io/managed-by: Helm app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: open-webui app.kubernetes.io/name: open-webui
app.kubernetes.io/version: 0.6.40 app.kubernetes.io/version: 0.6.42
helm.sh/chart: open-webui-8.18.0 helm.sh/chart: open-webui-8.21.0
name: open-webui name: open-webui
namespace: open-webui namespace: open-webui
spec: spec:
@@ -177,8 +177,8 @@ spec:
app.kubernetes.io/instance: open-webui app.kubernetes.io/instance: open-webui
app.kubernetes.io/managed-by: Helm app.kubernetes.io/managed-by: Helm
app.kubernetes.io/name: open-webui app.kubernetes.io/name: open-webui
app.kubernetes.io/version: 0.6.40 app.kubernetes.io/version: 0.6.42
helm.sh/chart: open-webui-8.18.0 helm.sh/chart: open-webui-8.21.0
spec: spec:
automountServiceAccountToken: false automountServiceAccountToken: false
containers: containers:
@@ -215,13 +215,13 @@ spec:
- name: OAUTH_ALLOWED_ROLES - name: OAUTH_ALLOWED_ROLES
value: default-roles-home value: default-roles-home
- name: OAUTH_ADMIN_ROLES - name: OAUTH_ADMIN_ROLES
value: ADMIN value: app_admin
- name: WEBSOCKET_REDIS_URL - name: WEBSOCKET_REDIS_URL
valueFrom: valueFrom:
secretKeyRef: secretKeyRef:
key: redis_url key: redis_url
name: open-webui name: open-webui
image: ghcr.io/open-webui/open-webui:0.6.40 image: ghcr.io/open-webui/open-webui:0.6.42
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
name: open-webui name: open-webui
ports: ports:
@@ -237,7 +237,7 @@ spec:
- sh - sh
- -c - -c
- cp -R -n /app/backend/data/* /tmp/app-data/ - cp -R -n /app/backend/data/* /tmp/app-data/
image: ghcr.io/open-webui/open-webui:0.6.40 image: ghcr.io/open-webui/open-webui:0.6.42
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
name: copy-app-data name: copy-app-data
volumeMounts: volumeMounts:

View File

@@ -5,7 +5,7 @@ kind: Kustomization
helmCharts: helmCharts:
- name: open-webui - name: open-webui
repo: https://helm.openwebui.com/ repo: https://helm.openwebui.com/
version: 8.18.0 version: 8.21.0
releaseName: open-webui releaseName: open-webui
includeCRDs: true includeCRDs: true
namespace: open-webui namespace: open-webui

View File

@@ -57,7 +57,7 @@ websocket:
manager: redis manager: redis
# -- Specifies the URL of the Redis instance for websocket communication. Template with `redis://[:<password>@]<hostname>:<port>/<db>` # -- Specifies the URL of the Redis instance for websocket communication. Template with `redis://[:<password>@]<hostname>:<port>/<db>`
# @section -- Websocket configuration # @section -- Websocket configuration
url: "" url: redis://open-webui-redis:6379/0
# -- Node selector for websocket pods # -- Node selector for websocket pods
# @section -- Websocket configuration # @section -- Websocket configuration
nodeSelector: {} nodeSelector: {}
@@ -139,6 +139,14 @@ websocket:
# runAsUser: 999 # runAsUser: 999
# runAsGroup: 1000 # 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 # -- Value of cluster domain
clusterDomain: cluster.local clusterDomain: cluster.local
@@ -662,7 +670,7 @@ sso:
allowedRoles: "default-roles-home" allowedRoles: "default-roles-home"
# -- Comma-separated list of roles allowed to log in as admin (receive open webui role admin) # -- Comma-separated list of roles allowed to log in as admin (receive open webui role admin)
# @section -- Role management configuration # @section -- Role management configuration
adminRoles: "ADMIN" adminRoles: "app_admin"
groupManagement: groupManagement:
# -- The claim that contains the groups (can be nested, e.g., user.memberOf) # -- The claim that contains the groups (can be nested, e.g., user.memberOf)
# @section -- SSO Configuration # @section -- SSO Configuration