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

Fix Tests #468

Merged
merged 3 commits into from
Aug 24, 2023
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
2 changes: 1 addition & 1 deletion .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
agents:
queue: "public-v5"
queue: "public"

# Mount the docker.sock as to the docker container, so that we are able to
# run docker build command and kind is spawned as a sibling container.
Expand Down
12 changes: 6 additions & 6 deletions test/endtoend/operator/101_initial_cluster_backup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ spec:
path: /backup
type: Directory
images:
vtctld: vitess/lite:mysql57
vtgate: vitess/lite:mysql57
vttablet: vitess/lite:mysql57
vtorc: vitess/lite:mysql57
vtbackup: vitess/lite:mysql57
vtctld: vitess/lite:latest
vtgate: vitess/lite:latest
vttablet: vitess/lite:latest
vtorc: vitess/lite:latest
vtbackup: vitess/lite:latest
mysqld:
mysql56Compatible: vitess/lite:mysql57
mysql56Compatible: vitess/lite:latest
mysqldExporter: prom/mysqld-exporter:v0.11.0
cells:
- name: zone1
Expand Down
12 changes: 6 additions & 6 deletions test/endtoend/operator/102_keyspace_teardown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ spec:
path: /backup
type: Directory
images:
vtctld: vitess/lite:mysql57
vtgate: vitess/lite:mysql57
vttablet: vitess/lite:mysql57
vtorc: vitess/lite:mysql57
vtbackup: vitess/lite:mysql57
vtctld: vitess/lite:latest
vtgate: vitess/lite:latest
vttablet: vitess/lite:latest
vtorc: vitess/lite:latest
vtbackup: vitess/lite:latest
mysqld:
mysql56Compatible: vitess/lite:mysql57
mysql56Compatible: vitess/lite:latest
mysqldExporter: prom/mysqld-exporter:v0.11.0
cells:
- name: zone1
Expand Down
2 changes: 1 addition & 1 deletion tools/get-e2e-test-deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ln -sf "kubectl-${KUBE_VERSION}" kubectl
if ! command -v kind &> /dev/null
then
echo "Downloading kind..."
curl -L https://kind.sigs.k8s.io/dl/v0.12.0/kind-linux-amd64 > "kind"
curl -L https://kind.sigs.k8s.io/dl/v0.20.0/kind-linux-amd64 > "kind"
chmod +x "kind"
echo "Installed kind"
else
Expand Down