Merge pull request #236 from jackhauGR/feat

This commit is contained in:
James W. 2025-05-09 06:44:11 -07:00 committed by GitHub
commit 545738a200
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 12 additions and 2 deletions

View File

@ -1,6 +1,6 @@
apiVersion: v2 apiVersion: v2
name: open-webui name: open-webui
version: 6.11.0 version: 6.12.0
appVersion: 0.6.7 appVersion: 0.6.7
home: https://www.openwebui.com/ home: https://www.openwebui.com/
icon: >- icon: >-

View File

@ -1,6 +1,6 @@
# open-webui # open-webui
![Version: 6.11.0](https://img.shields.io/badge/Version-6.11.0-informational?style=flat-square) ![AppVersion: 0.6.7](https://img.shields.io/badge/AppVersion-0.6.7-informational?style=flat-square) ![Version: 6.12.0](https://img.shields.io/badge/Version-6.12.0-informational?style=flat-square) ![AppVersion: 0.6.7](https://img.shields.io/badge/AppVersion-0.6.7-informational?style=flat-square)
Open WebUI: A User-Friendly Web Interface for Chat Interactions 👋 Open WebUI: A User-Friendly Web Interface for Chat Interactions 👋
@ -186,6 +186,7 @@ helm upgrade --install open-webui open-webui/open-webui
| ingress.class | string | `""` | | | ingress.class | string | `""` | |
| ingress.enabled | bool | `false` | | | ingress.enabled | bool | `false` | |
| ingress.existingSecret | string | `""` | | | ingress.existingSecret | string | `""` | |
| ingress.extraLabels | object | `{}` | Additional custom labels to add to the Ingress metadata Useful for tagging, selecting, or applying policies to the Ingress via labels. |
| ingress.host | string | `"chat.example.com"` | | | ingress.host | string | `"chat.example.com"` | |
| ingress.tls | bool | `false` | | | ingress.tls | bool | `false` | |
| livenessProbe | object | `{}` | Probe for liveness of the Open WebUI container ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes> | | livenessProbe | object | `{}` | Probe for liveness of the Open WebUI container ref: <https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes> |

View File

@ -6,6 +6,9 @@ metadata:
namespace: {{ include "open-webui.namespace" . }} namespace: {{ include "open-webui.namespace" . }}
labels: labels:
{{- include "open-webui.labels" . | nindent 4 }} {{- include "open-webui.labels" . | nindent 4 }}
{{- with .Values.ingress.extraLabels }}
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.ingress.annotations }} {{- with .Values.ingress.annotations }}
annotations: annotations:
{{- toYaml . | nindent 4 }} {{- toYaml . | nindent 4 }}

View File

@ -201,6 +201,12 @@ ingress:
tls: false tls: false
existingSecret: "" existingSecret: ""
# -- Additional custom labels to add to the Ingress metadata
# Useful for tagging, selecting, or applying policies to the Ingress via labels.
extraLabels: {}
# extraLabels:
# app.kubernetes.io/environment: "staging"
persistence: persistence:
enabled: true enabled: true
size: 2Gi size: 2Gi