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

EVEREST-1549 PXC 1.16.0 #615

Draft
wants to merge 7 commits into
base: main
Choose a base branch
from
Draft
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 .github/workflows/build-push-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Go release
uses: actions/setup-go@v3
with:
go-version: '1.22'
go-version: '1.23'
check-latest: true

- name: Install operator-sdk
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
go-version: ${{ fromJson(inputs.go-version || '["1.22.x"]') }}
go-version: ${{ fromJson(inputs.go-version || '["1.23.x"]') }}
may-fail: [ false ]

env:
Expand All @@ -27,7 +27,7 @@ jobs:
if: env.GO_VERSION != 'tip'
uses: actions/setup-go@v3
with:
go-version: '1.22'
go-version: '1.23'
check-latest: true

- name: Install development tools
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: Set up Go release
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.23'
check-latest: true

- name: Install tools
Expand All @@ -42,7 +42,7 @@ jobs:
run:
make test
env:
PXC_OPERATOR_VERSION: 1.15.0
PXC_OPERATOR_VERSION: 1.16.0
PSMDB_OPERATOR_VERSION: 1.18.0
PG_OPERATOR_VERSION: 2.5.0
PERCONA_VERSION_SERVICE_URL: https://check-dev.percona.com/versions/v1
Expand All @@ -62,7 +62,7 @@ jobs:
- name: Set up Go release
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.23'
check-latest: true

- name: Build operator
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
run: |
kubectl kuttl test --config ./tests/integration/kuttl-core.yaml
env:
PXC_OPERATOR_VERSION: 1.15.0
PXC_OPERATOR_VERSION: 1.16.0
PSMDB_OPERATOR_VERSION: 1.18.0
PG_OPERATOR_VERSION: 2.5.0
PERCONA_VERSION_SERVICE_URL: https://check-dev.percona.com/versions/v1
Expand All @@ -102,7 +102,7 @@ jobs:
run: |
kubectl kuttl test --config ./tests/integration/kuttl-features.yaml
env:
PXC_OPERATOR_VERSION: 1.15.0
PXC_OPERATOR_VERSION: 1.16.0
PSMDB_OPERATOR_VERSION: 1.18.0
PG_OPERATOR_VERSION: 2.5.0
PERCONA_VERSION_SERVICE_URL: https://check-dev.percona.com/versions/v1
Expand All @@ -112,11 +112,11 @@ jobs:
run: |
kubectl kuttl test --config ./tests/integration/kuttl-upgrade.yaml
env:
PXC_OPERATOR_VERSION: 1.15.0
PXC_OPERATOR_VERSION: 1.16.0
PSMDB_OPERATOR_VERSION: 1.18.0
PG_OPERATOR_VERSION: 2.5.0
PREVIOUS_PG_OPERATOR_VERSION: 2.4.1
PREVIOUS_PXC_OPERATOR_VERSION: 1.14.0
PREVIOUS_PXC_OPERATOR_VERSION: 1.15.0
PREVIOUS_PSMDB_OPERATOR_VERSION: 1.17.0
PERCONA_VERSION_SERVICE_URL: https://check-dev.percona.com/versions/v1

Expand All @@ -137,7 +137,7 @@ jobs:
- name: Set up Go release
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.23'
check-latest: true

- name: Build operator
Expand Down Expand Up @@ -192,11 +192,11 @@ jobs:
run: |
kubectl kuttl test --config ./tests/e2e/kuttl-upgrade.yaml
env:
PXC_OPERATOR_VERSION: 1.15.0
PXC_OPERATOR_VERSION: 1.16.0
PSMDB_OPERATOR_VERSION: 1.18.0
PG_OPERATOR_VERSION: 2.5.0
PREVIOUS_PG_OPERATOR_VERSION: 2.4.1
PREVIOUS_PXC_OPERATOR_VERSION: 1.14.0
PREVIOUS_PXC_OPERATOR_VERSION: 1.15.0
PREVIOUS_PSMDB_OPERATOR_VERSION: 1.17.0
PERCONA_VERSION_SERVICE_URL: https://check-dev.percona.com/versions/v1

Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
run: |
kubectl kuttl test --config ./tests/e2e/kuttl-core.yaml
env:
PXC_OPERATOR_VERSION: 1.15.0
PXC_OPERATOR_VERSION: 1.16.0
PSMDB_OPERATOR_VERSION: 1.18.0
PG_OPERATOR_VERSION: 2.5.0
PERCONA_VERSION_SERVICE_URL: https://check-dev.percona.com/versions/v1
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
- name: Set up Go release
uses: actions/setup-go@v5
with:
go-version: '1.22'
go-version: '1.23'
check-latest: true

- name: Install operator-sdk
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.22 as builder
FROM golang:1.23 as builder
ARG TARGETOS
ARG TARGETARCH

Expand Down
41 changes: 20 additions & 21 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
module github.com/percona/everest-operator

go 1.22.6
go 1.23.4

replace (
k8s.io/api => k8s.io/api v0.31.1
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.31.1
k8s.io/apimachinery => k8s.io/apimachinery v0.31.1
k8s.io/client-go => k8s.io/client-go v0.31.1
k8s.io/component-base => k8s.io/component-base v0.31.1
)
Expand All @@ -20,20 +19,20 @@ require (
github.com/go-ini/ini v1.67.0
github.com/go-logr/logr v1.4.2
github.com/hashicorp/go-version v1.7.0
github.com/onsi/ginkgo/v2 v2.20.2
github.com/onsi/ginkgo/v2 v2.22.0
github.com/onsi/gomega v1.36.1
github.com/operator-framework/api v0.27.0
github.com/percona/percona-postgresql-operator v0.0.0-20241007204305-35d61aa5aebd
github.com/percona/percona-server-mongodb-operator v1.18.0
github.com/percona/percona-xtradb-cluster-operator v1.15.0
github.com/percona/percona-xtradb-cluster-operator v1.16.0
github.com/stretchr/testify v1.9.0
golang.org/x/mod v0.22.0
gopkg.in/yaml.v3 v3.0.1
gotest.tools v2.2.0+incompatible
k8s.io/api v0.31.2
k8s.io/apimachinery v0.31.2
k8s.io/api v0.32.0
k8s.io/apimachinery v0.32.0
k8s.io/client-go v12.0.0+incompatible
sigs.k8s.io/controller-runtime v0.19.1
sigs.k8s.io/controller-runtime v0.19.3
)

require (
Expand Down Expand Up @@ -88,7 +87,7 @@ require (
github.com/google/gnostic-models v0.6.9-0.20230804172637-c7be7c783f49 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/pprof v0.0.0-20240827171923-fa2c70bbbfe5 // indirect
github.com/google/pprof v0.0.0-20241029153458-d1b30febd7db // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/websocket v1.5.1 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.22.0 // indirect
Expand All @@ -98,10 +97,10 @@ require (
github.com/josharian/intern v1.0.0 // indirect
github.com/jpillora/backoff v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/klauspost/compress v1.17.10 // indirect
github.com/klauspost/compress v1.17.11 // indirect
github.com/klauspost/pgzip v1.2.6 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/moby/spdystream v0.4.0 // indirect
github.com/moby/spdystream v0.5.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
Expand Down Expand Up @@ -140,14 +139,14 @@ require (
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.27.0 // indirect
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 // indirect
golang.org/x/net v0.30.0 // indirect
golang.org/x/net v0.33.0 // indirect
golang.org/x/oauth2 v0.23.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/sys v0.26.0 // indirect
golang.org/x/term v0.25.0 // indirect
golang.org/x/text v0.19.0 // indirect
golang.org/x/time v0.6.0 // indirect
golang.org/x/tools v0.25.0 // indirect
golang.org/x/sync v0.10.0 // indirect
golang.org/x/sys v0.28.0 // indirect
golang.org/x/term v0.27.0 // indirect
golang.org/x/text v0.21.0 // indirect
golang.org/x/time v0.7.0 // indirect
golang.org/x/tools v0.26.0 // indirect
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20240903143218-8af14fe29dc1 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240903143218-8af14fe29dc1 // indirect
Expand All @@ -160,12 +159,12 @@ require (
k8s.io/apiserver v0.31.1 // indirect
k8s.io/component-base v0.31.1 // indirect
k8s.io/klog/v2 v2.130.1 // indirect
k8s.io/kube-openapi v0.0.0-20240903163716-9e1beecbcb38 // indirect
k8s.io/utils v0.0.0-20240921022957-49e7df575cb6 // indirect
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.30.3 // indirect
sigs.k8s.io/gateway-api v1.1.0 // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
sigs.k8s.io/mcs-api v0.1.0 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
sigs.k8s.io/yaml v1.4.0 // indirect
)
Loading
Loading