From 1e876602921edf690026d1db4f7036289368d2fb Mon Sep 17 00:00:00 2001 From: Vinicius Dutra Date: Mon, 10 Feb 2025 17:54:50 -0300 Subject: [PATCH] feat: enable annotations in redis pods --- charts/open-webui/templates/websocket-redis.yaml | 4 ++++ charts/open-webui/values.yaml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/charts/open-webui/templates/websocket-redis.yaml b/charts/open-webui/templates/websocket-redis.yaml index 5e95dc8..55de81b 100644 --- a/charts/open-webui/templates/websocket-redis.yaml +++ b/charts/open-webui/templates/websocket-redis.yaml @@ -21,6 +21,10 @@ spec: metadata: labels: {{- include "websocket.redis.labels" . | nindent 8 }} + annotations: + {{- with .Values.websocket.redis.pods.annotations }} + {{- toYaml . | nindent 4 }} + {{- end }} spec: containers: - name: {{ .Values.websocket.redis.name }} diff --git a/charts/open-webui/values.yaml b/charts/open-webui/values.yaml index f0006db..5eec230 100644 --- a/charts/open-webui/values.yaml +++ b/charts/open-webui/values.yaml @@ -52,6 +52,10 @@ websocket: labels: {} # -- Redis annotations annotations: {} + # -- Redis pod + pods: + # -- Redis pod annotations + annotations: {} # -- Redis image image: repository: redis