-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
43f2fa6
commit 11b228a
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
echo "${_group}Upgrading Clickhouse ..." | ||
|
||
# First check to see if user is upgrading by checking for existing clickhouse volume | ||
if [[ -n "$(docker volume ls -q --filter name=sentry-clickhouse)" ]]; then | ||
# In order to get to 23.8, we need to first upgrade go from 21.8 -> 22.8 -> 23.3 -> 23.8 | ||
$dc up -d clickhouse | ||
version=$($dc exec clickhouse clickhouse-client -q 'SELECT version()') | ||
if [[ "$version" == "22.8.15.25.altinitystable" || "$version" == "21.8.12.29.altinitydev.arm" ]]; then | ||
$dc down clickhouse | ||
$dcb --build-arg BASE_IMAGE=altinity/clickhouse-server:22.8.15.25.altinitystable clickhouse | ||
$dc up -d clickhouse | ||
$dc down clickhouse | ||
$dcb --build-arg BASE_IMAGE=altinity/clickhouse-server:23.3.19.33.altinitystable clickhouse | ||
fi | ||
$dc down clickhouse | ||
fi |