Merge pull request #206 from yushao2/main

This commit is contained in:
James W. 2025-03-18 21:29:11 -06:00 committed by GitHub
commit 7ea5d902f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 12 additions and 1 deletions

View File

@ -1,6 +1,6 @@
apiVersion: v2 apiVersion: v2
name: open-webui name: open-webui
version: 5.24.0 version: 5.25.0
appVersion: 0.5.20 appVersion: 0.5.20
home: https://www.openwebui.com/ home: https://www.openwebui.com/
icon: >- icon: >-

View File

@ -124,6 +124,7 @@ helm upgrade --install open-webui open-webui/open-webui
| websocket.redis.pods | object | `{"annotations":{}}` | Redis pod | | websocket.redis.pods | object | `{"annotations":{}}` | Redis pod |
| websocket.redis.pods.annotations | object | `{}` | Redis pod annotations | | websocket.redis.pods.annotations | object | `{}` | Redis pod annotations |
| websocket.redis.resources | object | `{}` | Redis resources | | websocket.redis.resources | object | `{}` | Redis resources |
| websocket.redis.securityContext | object | `{}` | Redis security context ref: <https://kubernetes.io/docs/tasks/configure-pod-container/security-context/#set-the-security-context-for-a-containe> |
| websocket.redis.service | object | `{"annotations":{},"containerPort":6379,"labels":{},"nodePort":"","port":6379,"type":"ClusterIP"}` | Redis service | | websocket.redis.service | object | `{"annotations":{},"containerPort":6379,"labels":{},"nodePort":"","port":6379,"type":"ClusterIP"}` | Redis service |
| websocket.redis.service.annotations | object | `{}` | Redis service annotations | | websocket.redis.service.annotations | object | `{}` | Redis service annotations |
| websocket.redis.service.containerPort | int | `6379` | Redis container/target port | | websocket.redis.service.containerPort | int | `6379` | Redis container/target port |

View File

@ -57,6 +57,10 @@ spec:
affinity: affinity:
{{- toYaml . | nindent 8 }} {{- toYaml . | nindent 8 }}
{{- end }} {{- end }}
{{- with .Values.websocket.redis.securityContext }}
securityContext:
{{- toYaml . | nindent 8 }}
{{- end }}
--- ---
apiVersion: v1 apiVersion: v1
kind: Service kind: Service

View File

@ -90,6 +90,12 @@ websocket:
# -- Redis affinity for pod assignment # -- Redis affinity for pod assignment
affinity: {} affinity: {}
# -- Redis security context
securityContext:
{}
# runAsUser: 999
# runAsGroup: 1000
# -- Deploys a Redis cluster with subchart 'redis' from bitnami # -- Deploys a Redis cluster with subchart 'redis' from bitnami
redis-cluster: redis-cluster:
# -- Enable Redis installation # -- Enable Redis installation