Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update images and tests after the release of v20.0.2 #603

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions test/endtoend/operator/101_initial_cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ metadata:
name: example
spec:
images:
vtctld: vitess/lite:v20.0.1
vtgate: vitess/lite:v20.0.1
vttablet: vitess/lite:v20.0.1
vtorc: vitess/lite:v20.0.1
vtbackup: vitess/lite:v20.0.1
vtctld: vitess/lite:v20.0.2
vtgate: vitess/lite:v20.0.2
vttablet: vitess/lite:v20.0.2
vtorc: vitess/lite:v20.0.2
vtbackup: vitess/lite:v20.0.2
mysqld:
mysql80Compatible: mysql:8.0.30
mysqldExporter: prom/mysqld-exporter:v0.11.0
Expand Down
2 changes: 1 addition & 1 deletion test/endtoend/upgrade_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ killall kubectl
setupKubectlAccessForCI

get_started "operator.yaml" "101_initial_cluster.yaml"
verifyVtGateVersion "20.0.1"
verifyVtGateVersion "20.0.2"
checkSemiSyncSetup
# Initially too durability policy should be specified
verifyDurabilityPolicy "commerce" "semi_sync"
Expand Down
4 changes: 2 additions & 2 deletions tools/get-e2e-test-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ fi
if ! command -v vtctldclient &> /dev/null
then
echo "Downloading vtctldclient..."
version=20.0.1
file=vitess-${version}-003c441.tar.gz
version=20.0.2
file=vitess-${version}-2592c59.tar.gz
wget https://github.com/vitessio/vitess/releases/download/v${version}/${file}
tar -xzf ${file}
cd ${file/.tar.gz/}
Expand Down
Loading