Skip to content
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
Expand Up @@ -2,7 +2,7 @@ agents:
queue: "public"

env:
GO_VERSION_FILE: "go1.26.1.linux-amd64.tar.gz"
GO_VERSION_FILE: "go1.26.2.linux-amd64.tar.gz"

# 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
2 changes: 1 addition & 1 deletion build/Dockerfile.release
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# without messing up file permissions, since the Docker container doesn't run as
# your actual user.

FROM golang:1.26.1 AS build
FROM golang:1.26.2 AS build

ENV GO111MODULE=on
WORKDIR /go/src/planetscale.dev/vitess-operator
Expand Down
217 changes: 116 additions & 101 deletions go.mod

Large diffs are not rendered by default.

547 changes: 292 additions & 255 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion test/endtoend/backup_restore_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ setupKindCluster
cd test/endtoend/operator || exit 1

get_started "operator-latest.yaml" "101_initial_cluster_backup.yaml"
verifyVtGateVersion "24.0.0"
verifyVtGateVersion "25.0.0"
checkSemiSyncSetup
checkMysqldExporterMetrics
takeBackup "commerce/-"
Expand Down
2 changes: 1 addition & 1 deletion test/endtoend/backup_schedule_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ setupKindCluster
cd test/endtoend/operator || exit 1

get_started "operator-latest.yaml" "101_initial_cluster_backup_schedule.yaml"
verifyVtGateVersion "24.0.0"
verifyVtGateVersion "25.0.0"
checkSemiSyncSetup
checkMysqldExporterMetrics
verifyListBackupsOutputWithSchedule
Expand Down
2 changes: 1 addition & 1 deletion test/endtoend/backup_schedule_vtctldclient_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ setupKindCluster
cd test/endtoend/operator || exit 1

get_started "operator-latest.yaml" "103_initial_cluster_vtctldclient_backup_schedule.yaml"
verifyVtGateVersion "24.0.0"
verifyVtGateVersion "25.0.0"
verifyVtctldclientScheduleJobs

# Teardown
Expand Down
4 changes: 2 additions & 2 deletions test/endtoend/hpa_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ source ./test/endtoend/utils.sh

function verifyHpaCount() {
expectedCount=$1
count=$(kubectl get hpa -n example --no-headers | wc -l)
count=$(kubectl get hpa -n example -o name | wc -l | tr -d ' ')
if [[ "$count" -eq "$expectedCount" ]]; then
echo "HorizontalPodAutoscaler count is $count"
return 0
Expand Down Expand Up @@ -34,7 +34,7 @@ setupKindCluster
cd test/endtoend/operator || exit 1

get_started "operator-latest.yaml" "101_initial_cluster_autoscale.yaml"
verifyVtGateVersion "24.0.0"
verifyVtGateVersion "25.0.0"
checkSemiSyncSetup
checkMysqldExporterMetrics

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 @@ -272,7 +272,7 @@ checkMysqldExporterMetrics
# Initially too durability policy should be specified
verifyDurabilityPolicy "commerce" "semi_sync"
upgradeToLatest
verifyVtGateVersion "24.0.0"
verifyVtGateVersion "25.0.0"
verifyResourceSpec
checkSemiSyncSetup
checkMysqldExporterMetrics
Expand Down
2 changes: 1 addition & 1 deletion test/endtoend/vtorc_vtadmin_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ setupKindCluster
cd test/endtoend/operator || exit 1

get_started_vtorc_vtadmin
verifyVtGateVersion "24.0.0"
verifyVtGateVersion "25.0.0"
checkSemiSyncSetup

# Check Vtadmin is setup
Expand Down
Loading