Skip to content

Commit

Permalink
upgrade Redis version (#34)
Browse files Browse the repository at this point in the history
  • Loading branch information
henzigo authored Dec 17, 2024
1 parent 84508e9 commit b58cdaa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion UPGRADE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion deploy/parts/kubernetes-variables.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b58cdaa

Please sign in to comment.