Skip to content

Commit d69e8a1

Browse files
committed
Bump to controller-runtime v0.22
Signed-off-by: Stefan Büringer [email protected]
1 parent b4a6ddd commit d69e8a1

File tree

8 files changed

+279
-286
lines changed

8 files changed

+279
-286
lines changed

controlplane/kubeadm/internal/etcd/etcd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ type etcd interface {
4141
AlarmList(ctx context.Context) (*clientv3.AlarmResponse, error)
4242
Close() error
4343
Endpoints() []string
44-
MemberList(ctx context.Context) (*clientv3.MemberListResponse, error)
44+
MemberList(ctx context.Context, opts ...clientv3.OpOption) (*clientv3.MemberListResponse, error)
4545
MemberRemove(ctx context.Context, id uint64) (*clientv3.MemberRemoveResponse, error)
4646
MoveLeader(ctx context.Context, id uint64) (*clientv3.MoveLeaderResponse, error)
4747
Status(ctx context.Context, endpoint string) (*clientv3.StatusResponse, error)

controlplane/kubeadm/internal/etcd/fake/client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ func (c *FakeEtcdClient) AlarmList(_ context.Context) (*clientv3.AlarmResponse,
5252
return c.AlarmResponse, c.ErrorResponse
5353
}
5454

55-
func (c *FakeEtcdClient) MemberList(_ context.Context) (*clientv3.MemberListResponse, error) {
55+
func (c *FakeEtcdClient) MemberList(_ context.Context, _ ...clientv3.OpOption) (*clientv3.MemberListResponse, error) {
5656
return c.MemberListResponse, c.ErrorResponse
5757
}
5858
func (c *FakeEtcdClient) MemberRemove(_ context.Context, i uint64) (*clientv3.MemberRemoveResponse, error) {

go.mod

Lines changed: 33 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ require (
1818
github.com/go-logr/logr v1.4.3
1919
github.com/gobuffalo/flect v1.0.3
2020
// Note: This must be kept in sync with the version used by k8s.io.
21-
github.com/google/cel-go v0.23.2
21+
github.com/google/cel-go v0.26.0
2222
github.com/google/go-cmp v0.7.0
2323
github.com/google/go-github/v53 v53.2.0
2424
github.com/olekukonko/tablewriter v0.0.5
@@ -30,32 +30,32 @@ require (
3030
github.com/spf13/pflag v1.0.7
3131
github.com/spf13/viper v1.20.1
3232
github.com/valyala/fastjson v1.6.4
33-
go.etcd.io/etcd/api/v3 v3.5.22
34-
go.etcd.io/etcd/client/pkg/v3 v3.5.22
35-
go.etcd.io/etcd/client/v3 v3.5.22
33+
go.etcd.io/etcd/api/v3 v3.6.4
34+
go.etcd.io/etcd/client/pkg/v3 v3.6.4
35+
go.etcd.io/etcd/client/v3 v3.6.4
3636
go.uber.org/zap v1.27.0
3737
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
3838
golang.org/x/oauth2 v0.30.0
3939
golang.org/x/text v0.28.0
4040
gomodules.xyz/jsonpatch/v2 v2.5.0
41-
google.golang.org/grpc v1.71.3
42-
k8s.io/api v0.33.3
43-
k8s.io/apiextensions-apiserver v0.33.3
44-
k8s.io/apimachinery v0.33.3
45-
k8s.io/apiserver v0.33.3
46-
k8s.io/client-go v0.33.3
47-
k8s.io/cluster-bootstrap v0.33.3
48-
k8s.io/component-base v0.33.3
41+
google.golang.org/grpc v1.72.1
42+
k8s.io/api v0.34.0-rc.1
43+
k8s.io/apiextensions-apiserver v0.34.0-rc.1
44+
k8s.io/apimachinery v0.34.0-rc.1
45+
k8s.io/apiserver v0.34.0-rc.1
46+
k8s.io/client-go v0.34.0-rc.1
47+
k8s.io/cluster-bootstrap v0.34.0-rc.1
48+
k8s.io/component-base v0.34.0-rc.1
4949
k8s.io/klog/v2 v2.130.1
50-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff
51-
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738
52-
sigs.k8s.io/controller-runtime v0.21.0
50+
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b
51+
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397
52+
sigs.k8s.io/controller-runtime v0.21.1-0.20250812131711-682465344b9b
5353
sigs.k8s.io/randfill v1.0.0
5454
sigs.k8s.io/yaml v1.6.0
5555
)
5656

5757
require (
58-
cel.dev/expr v0.19.1 // indirect
58+
cel.dev/expr v0.24.0 // indirect
5959
dario.cat/mergo v1.0.1 // indirect
6060
github.com/Masterminds/goutils v1.1.1 // indirect
6161
github.com/Masterminds/semver/v3 v3.3.0 // indirect
@@ -75,8 +75,8 @@ require (
7575
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
7676
github.com/evanphx/json-patch v5.7.0+incompatible // indirect
7777
github.com/felixge/httpsnoop v1.0.4 // indirect
78-
github.com/fsnotify/fsnotify v1.8.0 // indirect
79-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
78+
github.com/fsnotify/fsnotify v1.9.0 // indirect
79+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
8080
github.com/go-logr/stdr v1.2.2 // indirect
8181
github.com/go-logr/zapr v1.3.0 // indirect
8282
github.com/go-openapi/jsonpointer v0.21.0 // indirect
@@ -87,12 +87,12 @@ require (
8787
github.com/gogo/protobuf v1.3.2 // indirect
8888
github.com/golang/protobuf v1.5.4 // indirect
8989
github.com/google/btree v1.1.3 // indirect
90-
github.com/google/gnostic-models v0.6.9 // indirect
90+
github.com/google/gnostic-models v0.7.0 // indirect
9191
github.com/google/go-querystring v1.1.0 // indirect
9292
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
9393
github.com/google/uuid v1.6.0 // indirect
9494
github.com/gorilla/websocket v1.5.4-0.20250319132907-e064f32e3674 // indirect
95-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.24.0 // indirect
95+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
9696
github.com/huandu/xstrings v1.5.0 // indirect
9797
github.com/inconshreveable/mousetrap v1.1.0 // indirect
9898
github.com/josharian/intern v1.0.0 // indirect
@@ -106,11 +106,12 @@ require (
106106
github.com/mitchellh/reflectwalk v1.0.2 // indirect
107107
github.com/moby/spdystream v0.5.0 // indirect
108108
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
109-
github.com/modern-go/reflect2 v1.0.2 // indirect
109+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
110110
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
111111
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f // indirect
112112
github.com/opencontainers/go-digest v1.0.0 // indirect
113113
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
114+
github.com/pmezard/go-difflib v1.0.0 // indirect
114115
github.com/prometheus/client_model v0.6.1 // indirect
115116
github.com/prometheus/common v0.62.0 // indirect
116117
github.com/prometheus/procfs v0.15.1 // indirect
@@ -126,16 +127,17 @@ require (
126127
github.com/x448/float16 v0.8.4 // indirect
127128
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
128129
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 // indirect
129-
go.opentelemetry.io/otel v1.34.0 // indirect
130-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.33.0 // indirect
131-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.33.0 // indirect
132-
go.opentelemetry.io/otel/metric v1.34.0 // indirect
130+
go.opentelemetry.io/otel v1.35.0 // indirect
131+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.34.0 // indirect
132+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.34.0 // indirect
133+
go.opentelemetry.io/otel/metric v1.35.0 // indirect
133134
go.opentelemetry.io/otel/sdk v1.34.0 // indirect
134-
go.opentelemetry.io/otel/trace v1.34.0 // indirect
135-
go.opentelemetry.io/proto/otlp v1.4.0 // indirect
135+
go.opentelemetry.io/otel/trace v1.35.0 // indirect
136+
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
136137
go.uber.org/automaxprocs v1.6.0 // indirect
137138
go.uber.org/multierr v1.11.0 // indirect
138139
go.yaml.in/yaml/v2 v2.4.2 // indirect
140+
go.yaml.in/yaml/v3 v3.0.4 // indirect
139141
go4.org v0.0.0-20201209231011-d4a079459e60 // indirect
140142
golang.org/x/crypto v0.41.0 // indirect
141143
golang.org/x/net v0.43.0 // indirect
@@ -144,13 +146,13 @@ require (
144146
golang.org/x/term v0.34.0 // indirect
145147
golang.org/x/time v0.9.0 // indirect
146148
golang.org/x/tools v0.35.0 // indirect
147-
google.golang.org/genproto/googleapis/api v0.0.0-20250106144421-5f5ef82da422 // indirect
148-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f // indirect
149+
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect
150+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb // indirect
149151
google.golang.org/protobuf v1.36.6 // indirect
150152
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
151153
gopkg.in/inf.v0 v0.9.1 // indirect
152154
gopkg.in/yaml.v3 v3.0.1 // indirect
153155
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect
154-
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
155-
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
156+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
157+
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
156158
)

0 commit comments

Comments
 (0)