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 to the new vitess version #539

Merged
merged 2 commits into from
Mar 7, 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
18 changes: 9 additions & 9 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ steps:
- name: "Upgrade Test"
command:
- apk add g++ make bash gcompat curl mysql mysql-client libc6-compat
- wget https://golang.org/dl/go1.22.0.linux-amd64.tar.gz
- tar -C /usr/local -xzf go1.22.0.linux-amd64.tar.gz
- wget https://golang.org/dl/go1.22.1.linux-amd64.tar.gz
- tar -C /usr/local -xzf go1.22.1.linux-amd64.tar.gz
- export PATH=$PATH:/usr/local/go/bin
- rm go1.22.0.linux-amd64.tar.gz
- rm go1.22.1.linux-amd64.tar.gz
- ln -s /lib/libc.so.6 /usr/lib/libresolv.so.2
- make upgrade-test
concurrency: 1
Expand All @@ -26,10 +26,10 @@ steps:
- name: "Backup Restore Test"
command:
- apk add g++ make bash gcompat curl mysql mysql-client libc6-compat
- wget https://golang.org/dl/go1.22.0.linux-amd64.tar.gz
- tar -C /usr/local -xzf go1.22.0.linux-amd64.tar.gz
- wget https://golang.org/dl/go1.22.1.linux-amd64.tar.gz
- tar -C /usr/local -xzf go1.22.1.linux-amd64.tar.gz
- export PATH=$PATH:/usr/local/go/bin
- rm go1.22.0.linux-amd64.tar.gz
- rm go1.22.1.linux-amd64.tar.gz
- ln -s /lib/libc.so.6 /usr/lib/libresolv.so.2
- make backup-restore-test
concurrency: 1
Expand All @@ -45,10 +45,10 @@ steps:
- name: "VTOrc and VTAdmin Test"
command:
- apk add g++ make bash gcompat curl mysql mysql-client libc6-compat chromium
- wget https://golang.org/dl/go1.22.0.linux-amd64.tar.gz
- tar -C /usr/local -xzf go1.22.0.linux-amd64.tar.gz
- wget https://golang.org/dl/go1.22.1.linux-amd64.tar.gz
- tar -C /usr/local -xzf go1.22.1.linux-amd64.tar.gz
- export PATH=$PATH:/usr/local/go/bin
- rm go1.22.0.linux-amd64.tar.gz
- rm go1.22.1.linux-amd64.tar.gz
- ln -s /lib/libc.so.6 /usr/lib/libresolv.so.2
- make vtorc-vtadmin-test
concurrency: 1
Expand Down
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:v19.0.0-rc1
vtgate: vitess/lite:v19.0.0-rc1
vttablet: vitess/lite:v19.0.0-rc1
vtorc: vitess/lite:v19.0.0-rc1
vtbackup: vitess/lite:v19.0.0-rc1
vtctld: vitess/lite:v19.0.0
vtgate: vitess/lite:v19.0.0
vttablet: vitess/lite:v19.0.0
vtorc: vitess/lite:v19.0.0
vtbackup: vitess/lite:v19.0.0
mysqld:
mysql80Compatible: mysql:8.0.30
mysqldExporter: prom/mysqld-exporter:v0.11.0
Expand Down
2 changes: 1 addition & 1 deletion test/endtoend/operator/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6572,7 +6572,7 @@ spec:
fieldPath: metadata.name
- name: OPERATOR_NAME
value: vitess-operator
image: planetscale/vitess-operator:v2.12.0-rc1
image: planetscale/vitess-operator:v2.12.0
name: vitess-operator
resources:
limits:
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 "19.0.0-rc1"
verifyVtGateVersion "19.0.0"
checkSemiSyncSetup
# Initially too durability policy should be specified
verifyDurabilityPolicy "commerce" "semi_sync"
Expand Down
Loading