diff --git a/charts/open-webui/Chart.yaml b/charts/open-webui/Chart.yaml index 8c281b9..75e4d3a 100644 --- a/charts/open-webui/Chart.yaml +++ b/charts/open-webui/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: open-webui -version: 6.11.0 +version: 6.12.0 appVersion: 0.6.7 home: https://www.openwebui.com/ icon: >- diff --git a/charts/open-webui/README.md b/charts/open-webui/README.md index 1f39333..23fcda2 100644 --- a/charts/open-webui/README.md +++ b/charts/open-webui/README.md @@ -1,6 +1,6 @@ # 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 👋 @@ -186,6 +186,7 @@ helm upgrade --install open-webui open-webui/open-webui | ingress.class | string | `""` | | | ingress.enabled | bool | `false` | | | 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.tls | bool | `false` | | | livenessProbe | object | `{}` | Probe for liveness of the Open WebUI container ref: | diff --git a/charts/open-webui/templates/ingress.yaml b/charts/open-webui/templates/ingress.yaml index 6b89ff4..a94f17c 100644 --- a/charts/open-webui/templates/ingress.yaml +++ b/charts/open-webui/templates/ingress.yaml @@ -6,6 +6,9 @@ metadata: namespace: {{ include "open-webui.namespace" . }} labels: {{- include "open-webui.labels" . | nindent 4 }} + {{- with .Values.ingress.extraLabels }} + {{- toYaml . | nindent 4 }} + {{- end }} {{- with .Values.ingress.annotations }} annotations: {{- toYaml . | nindent 4 }} diff --git a/charts/open-webui/values.yaml b/charts/open-webui/values.yaml index ee48464..82b3e6e 100644 --- a/charts/open-webui/values.yaml +++ b/charts/open-webui/values.yaml @@ -201,6 +201,12 @@ ingress: tls: false 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: enabled: true size: 2Gi