From de693f1b5524ef50c2793b726378cb2b22ee58f2 Mon Sep 17 00:00:00 2001 From: Goutham Pratapa Date: Mon, 10 Feb 2025 14:36:37 +0530 Subject: [PATCH] fix: security update init-container for redis (#39150) ## Summary by CodeRabbit - **Chores** - Updated the application release version to 3.6.2. - Upgraded the Redis service container to a newer image version for improved deployment consistency. --- deploy/helm/Chart.yaml | 2 +- deploy/helm/templates/deployment.yaml | 2 +- deploy/helm/values.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/deploy/helm/Chart.yaml b/deploy/helm/Chart.yaml index 5ed348e982..011012bcd3 100644 --- a/deploy/helm/Chart.yaml +++ b/deploy/helm/Chart.yaml @@ -11,7 +11,7 @@ sources: - https://github.com/appsmithorg/appsmith home: https://www.appsmith.com/ icon: https://assets.appsmith.com/appsmith-icon.png -version: 3.6.1 +version: 3.6.2 dependencies: - condition: redis.enabled name: redis diff --git a/deploy/helm/templates/deployment.yaml b/deploy/helm/templates/deployment.yaml index 08d981366f..876a199b6c 100644 --- a/deploy/helm/templates/deployment.yaml +++ b/deploy/helm/templates/deployment.yaml @@ -65,7 +65,7 @@ spec: {{- if ((.Values.initContainer.redis).image) }} image: {{ .Values.initContainer.redis.image }} {{- else }} - image: "docker.io/bitnami/redis:7.0.13-debian-11-r10" + image: "docker.io/redis:7.0.15" {{- end }} command: ['sh', '-c', "until redis-cli -h {{.Release.Name}}-redis-master.{{.Release.Namespace}}.svc.cluster.local ping ; do echo waiting for redis; sleep 2; done"] {{- end }} diff --git a/deploy/helm/values.yaml b/deploy/helm/values.yaml index b9ce8555fc..98cc15b79b 100644 --- a/deploy/helm/values.yaml +++ b/deploy/helm/values.yaml @@ -121,7 +121,7 @@ strategyType: RollingUpdate ## initContainer: {} # redis: - # image: docker.io/bitnami/redis-cluster:7.0.13-debian-11-r10 + # image: docker.io/redis:7.0.15 # mongodb: # image: docker.io/bitnami/mongodb:5.0.21-debian-11-r5 # postgresql: