diff --git a/.buildkite/pipeline.yml b/.buildkite/pipeline.yml index 908a14fa..ade86458 100644 --- a/.buildkite/pipeline.yml +++ b/.buildkite/pipeline.yml @@ -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. diff --git a/test/endtoend/operator/101_initial_cluster_backup.yaml b/test/endtoend/operator/101_initial_cluster_backup.yaml index 51059ed5..cb9f3c80 100644 --- a/test/endtoend/operator/101_initial_cluster_backup.yaml +++ b/test/endtoend/operator/101_initial_cluster_backup.yaml @@ -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 diff --git a/test/endtoend/operator/102_keyspace_teardown.yaml b/test/endtoend/operator/102_keyspace_teardown.yaml index 09abc26d..1efa71e7 100644 --- a/test/endtoend/operator/102_keyspace_teardown.yaml +++ b/test/endtoend/operator/102_keyspace_teardown.yaml @@ -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 diff --git a/tools/get-e2e-test-deps.sh b/tools/get-e2e-test-deps.sh index f95511b1..2501650a 100755 --- a/tools/get-e2e-test-deps.sh +++ b/tools/get-e2e-test-deps.sh @@ -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