From b58cdaa7beff078cf8ca75aa83806ae2940c1cce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20G=C3=B3recki?= Date: Tue, 17 Dec 2024 12:01:56 +0100 Subject: [PATCH] upgrade Redis version (#34) --- UPGRADE.md | 7 ++++++- deploy/parts/kubernetes-variables.sh | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/UPGRADE.md b/UPGRADE.md index 3dedb25..b2913e9 100644 --- a/UPGRADE.md +++ b/UPGRADE.md @@ -10,9 +10,14 @@ 2. Run `composer update shopsys/deployment` 3. Check files in mentioned pull requests and if you have any of them extended in your project, apply changes manually +## Upgrade from v3.3.1 to v3.3.2 + +- Redis was upgraded to version 7.4-alpine ([#34](https://github.com/shopsys/deployment/pull/34)) + - If you are using older Redis version then define `REDIS_VERSION='redis:7.0-alpine'` with using version in your `deploy-project.sh` file + ## Upgrade from v3.3.0 to v3.3.1 -- Finding running container for after deploy tasks is fixed ([#33](https://github.com/shopsys/deployment/pull/31)) +- Finding running container for after deploy tasks is fixed ([#33](https://github.com/shopsys/deployment/pull/33)) ## Upgrade from v3.2.9 to v3.3.0 diff --git a/deploy/parts/kubernetes-variables.sh b/deploy/parts/kubernetes-variables.sh index 426d72b..5f9ba93 100644 --- a/deploy/parts/kubernetes-variables.sh +++ b/deploy/parts/kubernetes-variables.sh @@ -7,7 +7,7 @@ assertVariable "CONFIGURATION_TARGET_PATH" assertVariable "S3_ENDPOINT" if [ -z ${REDIS_VERSION} ]; then - REDIS_VERSION='redis:7.0-alpine' + REDIS_VERSION='redis:7.4-alpine' fi VARS+=(REDIS_VERSION)