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
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 curl mysql mysql-client
- wget https://golang.org/dl/go1.18.4.linux-amd64.tar.gz
- tar -C /usr/local -xzf go1.18.4.linux-amd64.tar.gz
- wget https://golang.org/dl/go1.18.5.linux-amd64.tar.gz
- tar -C /usr/local -xzf go1.18.5.linux-amd64.tar.gz
- export PATH=$PATH:/usr/local/go/bin
- rm go1.18.4.linux-amd64.tar.gz
- rm go1.18.5.linux-amd64.tar.gz
- make upgrade-test
concurrency: 1
concurrency_group: 'vtop/upgrade-downgrade-test'
Expand All @@ -25,10 +25,10 @@ steps:
- name: "Backup Restore Test"
command:
- apk add g++ make bash curl mysql mysql-client
- wget https://golang.org/dl/go1.18.4.linux-amd64.tar.gz
- tar -C /usr/local -xzf go1.18.4.linux-amd64.tar.gz
- wget https://golang.org/dl/go1.18.5.linux-amd64.tar.gz
- tar -C /usr/local -xzf go1.18.5.linux-amd64.tar.gz
- export PATH=$PATH:/usr/local/go/bin
- rm go1.18.4.linux-amd64.tar.gz
- rm go1.18.5.linux-amd64.tar.gz
- make backup-restore-test
concurrency: 1
concurrency_group: 'vtop/backup-restore-test'
Expand All @@ -43,10 +43,10 @@ steps:
- name: "VTOrc and VTAdmin Test"
command:
- apk add g++ make bash curl mysql mysql-client chromium
- wget https://golang.org/dl/go1.18.4.linux-amd64.tar.gz
- tar -C /usr/local -xzf go1.18.4.linux-amd64.tar.gz
- wget https://golang.org/dl/go1.18.5.linux-amd64.tar.gz
- tar -C /usr/local -xzf go1.18.5.linux-amd64.tar.gz
- export PATH=$PATH:/usr/local/go/bin
- rm go1.18.4.linux-amd64.tar.gz
- rm go1.18.5.linux-amd64.tar.gz
- make vtorc-vtadmin-test
concurrency: 1
concurrency_group: 'vtop/vtorc-vtadmin-test'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18.4
go-version: 1.18.5
id: go

- name: Check out code into the Go module directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/make-generate-and-diff.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18.4
go-version: 1.18.5
id: go

- name: Check out code into the Go module directory
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18.4
go-version: 1.18.5
id: go

- name: Check out code into the Go module directory
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.18.4 AS build
FROM golang:1.18.5 AS build

ENV GO111MODULE=on
WORKDIR /go/src/planetscale.dev/vitess-operator
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ require (
sigs.k8s.io/controller-runtime v0.9.7
sigs.k8s.io/controller-tools v0.6.2
sigs.k8s.io/kustomize v2.0.3+incompatible
vitess.io/vitess v0.14.1
vitess.io/vitess v0.14.2
)

require (
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1473,5 +1473,5 @@ sigs.k8s.io/structured-merge-diff/v4 v4.2.1/go.mod h1:j/nl6xW8vLS49O8YvXW1ocPhZa
sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o=
sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=
vitess.io/vitess v0.14.1 h1:/dxeH41mpi01xt5dg327BDLvBz/XXH3CbKQWRinKw0o=
vitess.io/vitess v0.14.1/go.mod h1:kOA0C53JqlYY68HoXfpgFqa8WFOn69KVM9bvhWIXuLo=
vitess.io/vitess v0.14.2 h1:2VPtSer1J/mpj/lEZLG5b2OnZy76dROjI1G2Yz9ZFWg=
vitess.io/vitess v0.14.2/go.mod h1:kOA0C53JqlYY68HoXfpgFqa8WFOn69KVM9bvhWIXuLo=
2 changes: 1 addition & 1 deletion pkg/apis/planetscale/v2/defaults.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const (
// DefaultMysqlPortName is the name for the MySQL port.
DefaultMysqlPortName = "mysql"

defaultVitessLiteImage = "vitess/lite:v14.0.1"
defaultVitessLiteImage = "vitess/lite:v14.0.2"
)

// DefaultImages are a set of images to use when the CRD doesn't specify.
Expand Down