mirror of
https://github.com/open-webui/helm-charts
synced 2025-06-26 18:16:14 +00:00
feat(websocket): change redis name and set container resources
This commit is contained in:
parent
9b13a7e2af
commit
f06ddd9f2f
@ -37,6 +37,10 @@ spec:
|
|||||||
ports:
|
ports:
|
||||||
- name: http
|
- name: http
|
||||||
containerPort: {{ .Values.websocket.redis.service.containerPort }}
|
containerPort: {{ .Values.websocket.redis.service.containerPort }}
|
||||||
|
{{- with .Values.websocket.redis.resources }}
|
||||||
|
resources:
|
||||||
|
{{- toYaml . | nindent 10 }}
|
||||||
|
{{- end }}
|
||||||
---
|
---
|
||||||
apiVersion: v1
|
apiVersion: v1
|
||||||
kind: Service
|
kind: Service
|
||||||
|
@ -38,13 +38,13 @@ websocket:
|
|||||||
# -- Specifies the websocket manager to use with env `WEBSOCKET_MANAGER`: redis (default)
|
# -- Specifies the websocket manager to use with env `WEBSOCKET_MANAGER`: redis (default)
|
||||||
manager: redis
|
manager: redis
|
||||||
# -- Specifies the URL of the Redis instance for websocket communication
|
# -- Specifies the URL of the Redis instance for websocket communication
|
||||||
url: redis://websocket-redis:6379/0
|
url: redis://open-webui-redis:6379/0
|
||||||
# -- Deploys a redis
|
# -- Deploys a redis
|
||||||
redis:
|
redis:
|
||||||
# -- Enable redis installation
|
# -- Enable redis installation
|
||||||
enabled: true
|
enabled: true
|
||||||
# -- Redis name
|
# -- Redis name
|
||||||
name: websocket-redis
|
name: open-webui-redis
|
||||||
# -- Redis labels
|
# -- Redis labels
|
||||||
labels: {}
|
labels: {}
|
||||||
# -- Redis annotations
|
# -- Redis annotations
|
||||||
@ -58,6 +58,8 @@ websocket:
|
|||||||
command: []
|
command: []
|
||||||
# -- Redis arguments
|
# -- Redis arguments
|
||||||
args: []
|
args: []
|
||||||
|
# -- Redis resources
|
||||||
|
resources: {}
|
||||||
# -- Redis service
|
# -- Redis service
|
||||||
service:
|
service:
|
||||||
# -- Redis container/target port
|
# -- Redis container/target port
|
||||||
|
Loading…
Reference in New Issue
Block a user