Skip to content

Commit 95e4f7f

Browse files
author
Morven Cao
authored
upgrade sdk-go to align with latest sdk-go changes. (#418)
* upgrade sdk-go to align with latest sdk-go changes. Signed-off-by: Morven Cao <lcao@redhat.com> * upgrade sdk-go to fix work generation. Signed-off-by: Morven Cao <lcao@redhat.com> * cleanup disk for upgrade test action. Signed-off-by: Morven Cao <lcao@redhat.com> --------- Signed-off-by: Morven Cao <lcao@redhat.com>
1 parent ef59082 commit 95e4f7f

19 files changed

Lines changed: 481 additions & 374 deletions

File tree

.github/workflows/e2e.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,14 @@ jobs:
8787
upgrade:
8888
runs-on: ubuntu-22.04
8989
steps:
90+
- name: Check initial disk usage
91+
run: df -h /
92+
- name: Free disk space (optional cleanup)
93+
run: |
94+
sudo rm -rf /usr/local/lib/android
95+
sudo rm -rf /opt/hostedtoolcache
96+
docker system prune -af
97+
df -h /
9098
- name: Checkout
9199
uses: actions/checkout@v4
92100
- name: Setup Go

cmd/maestro/agent/cmd.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
commonoptions "open-cluster-management.io/ocm/pkg/common/options"
1616
"open-cluster-management.io/ocm/pkg/features"
1717
"open-cluster-management.io/ocm/pkg/work/spoke"
18-
"open-cluster-management.io/sdk-go/pkg/cloudevents/generic"
18+
cemetrics "open-cluster-management.io/sdk-go/pkg/cloudevents/generic/metrics"
1919
)
2020

2121
var (
@@ -25,7 +25,7 @@ var (
2525

2626
func init() {
2727
// register the cloud events metrics for the agent
28-
generic.RegisterClientCloudEventsMetrics(legacyregistry.Registerer())
28+
cemetrics.RegisterClientCloudEventsMetrics(legacyregistry.Registerer())
2929
}
3030

3131
// by default uses 1M as the limit for state feedback

cmd/maestro/environments/framework.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ import (
1919
"k8s.io/klog/v2"
2020

2121
envtypes "github.com/openshift-online/maestro/cmd/maestro/environments/types"
22-
"open-cluster-management.io/sdk-go/pkg/cloudevents/generic"
22+
workpayload "open-cluster-management.io/sdk-go/pkg/cloudevents/clients/work/payload"
23+
"open-cluster-management.io/sdk-go/pkg/cloudevents/generic/options/builder"
2324
)
2425

2526
func init() {
@@ -173,14 +174,14 @@ func (e *Env) LoadClients() error {
173174
if !e.Config.MessageBroker.Disable {
174175
// For gRPC message broker type, Maestro server does not require the source client to publish resources or subscribe to resource status.
175176
if e.Config.MessageBroker.MessageBrokerType != "grpc" {
176-
_, config, err := generic.NewConfigLoader(e.Config.MessageBroker.MessageBrokerType, e.Config.MessageBroker.MessageBrokerConfig).
177+
_, config, err := builder.NewConfigLoader(e.Config.MessageBroker.MessageBrokerType, e.Config.MessageBroker.MessageBrokerConfig).
177178
LoadConfig()
178179
if err != nil {
179180
return fmt.Errorf("Unable to load cloudevent config: %v", err)
180181
}
181182

182-
cloudEventsSourceOptions, err := generic.BuildCloudEventsSourceOptions(config,
183-
e.Config.MessageBroker.ClientID, e.Config.MessageBroker.SourceID)
183+
cloudEventsSourceOptions, err := builder.BuildCloudEventsSourceOptions(config,
184+
e.Config.MessageBroker.ClientID, e.Config.MessageBroker.SourceID, workpayload.ManifestBundleEventDataType)
184185
if err != nil {
185186
return fmt.Errorf("Unable to build cloudevent source options: %v", err)
186187
}

cmd/maestro/server/event_server.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ func (s *MessageQueueEventServer) Start(ctx context.Context) {
9191
// startSubscription initiates the subscription to resource status update messages.
9292
// It runs asynchronously in the background until the provided context is canceled.
9393
func (s *MessageQueueEventServer) startSubscription(ctx context.Context) {
94-
s.sourceClient.Subscribe(ctx, func(action types.ResourceAction, resource *api.Resource) error {
94+
s.sourceClient.Subscribe(ctx, func(ctx context.Context, action types.ResourceAction, resource *api.Resource) error {
9595
logger := klog.FromContext(ctx).WithValues("resourceID", resource.ID, "action", action)
9696
logger.Info("received action for resource")
9797
ctx = klog.NewContext(ctx, logger)

cmd/maestro/server/grpc_broker.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ func (s *GRPCBrokerService) HandleStatusUpdate(ctx context.Context, evt *ce.Even
103103
}
104104

105105
// RegisterHandler register the handler to the service.
106-
func (s *GRPCBrokerService) RegisterHandler(handler server.EventHandler) {
106+
func (s *GRPCBrokerService) RegisterHandler(ctx context.Context, handler server.EventHandler) {
107107
// do nothing
108108
}
109109

@@ -196,7 +196,7 @@ func NewGRPCBroker(ctx context.Context, eventBroadcaster *event.EventBroadcaster
196196
eventServer := servergrpc.NewGRPCBroker()
197197
pbv1.RegisterCloudEventServiceServer(grpcServer, eventServer)
198198
svc := NewGRPCBrokerService(resourceService, statusEventService)
199-
eventServer.RegisterService(workpayload.ManifestBundleEventDataType, svc)
199+
eventServer.RegisterService(context.Background(), workpayload.ManifestBundleEventDataType, svc)
200200

201201
return &GRPCBroker{
202202
instanceID: env().Config.MessageBroker.ClientID,

go.mod

Lines changed: 79 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -25,45 +25,50 @@ require (
2525
github.com/jinzhu/inflection v1.0.0
2626
github.com/lib/pq v1.10.9
2727
github.com/mendsley/gojwk v0.0.0-20141217222730-4d5ec6e58103
28-
github.com/onsi/ginkgo/v2 v2.25.3
28+
github.com/onsi/ginkgo/v2 v2.27.2
2929
github.com/onsi/gomega v1.38.2
3030
github.com/openshift-online/ocm-common v0.0.34
3131
github.com/openshift-online/ocm-sdk-go v0.1.485
32-
github.com/openshift/library-go v0.0.0-20250711143941-47604345e7ea
32+
github.com/openshift/library-go v0.0.0-20251120164824-14a789e09884
3333
github.com/prometheus/client_golang v1.23.2
3434
github.com/segmentio/ksuid v1.0.4
35-
github.com/spf13/cobra v1.9.1
35+
github.com/spf13/cobra v1.10.2
3636
github.com/spf13/pflag v1.0.10
3737
github.com/yaacov/tree-search-language v0.0.0-20190923184055-1c2dad2e354b
3838
github.com/zgalor/weberr v0.8.2
39-
go.opentelemetry.io/contrib/exporters/autoexport v0.60.0
40-
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0
41-
go.opentelemetry.io/otel v1.35.0
42-
go.opentelemetry.io/otel/sdk v1.35.0
43-
go.opentelemetry.io/otel/trace v1.35.0
44-
golang.org/x/oauth2 v0.30.0
45-
google.golang.org/grpc v1.71.0
39+
go.opentelemetry.io/contrib/exporters/autoexport v0.61.0
40+
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0
41+
go.opentelemetry.io/otel v1.38.0
42+
go.opentelemetry.io/otel/sdk v1.38.0
43+
go.opentelemetry.io/otel/trace v1.38.0
44+
golang.org/x/oauth2 v0.32.0
45+
google.golang.org/grpc v1.77.0
4646
google.golang.org/protobuf v1.36.10
4747
gopkg.in/resty.v1 v1.12.0
4848
gorm.io/datatypes v1.2.7
4949
gorm.io/driver/postgres v1.6.0
5050
gorm.io/gorm v1.30.0
51-
k8s.io/api v0.33.4
52-
k8s.io/apimachinery v0.33.4
53-
k8s.io/apiserver v0.33.4
54-
k8s.io/client-go v0.33.4
55-
k8s.io/component-base v0.33.4
51+
k8s.io/api v0.34.2
52+
k8s.io/apimachinery v0.34.2
53+
k8s.io/apiserver v0.34.2
54+
k8s.io/client-go v0.34.2
55+
k8s.io/component-base v0.34.2
5656
k8s.io/klog/v2 v2.130.1
57-
k8s.io/utils v0.0.0-20241210054802-24370beab758
58-
open-cluster-management.io/api v1.1.0
59-
open-cluster-management.io/ocm v1.0.1-0.20251017020440-daa9b2fa5467
60-
open-cluster-management.io/sdk-go v1.0.1-0.20251020023450-e3c5205637d2
57+
k8s.io/utils v0.0.0-20250604170112-4c0f3b243397
58+
open-cluster-management.io/api v1.1.1-0.20251124092621-2337d27c3b7f
59+
open-cluster-management.io/ocm v1.1.1-0.20251209040414-6d5d82c1a29c
60+
open-cluster-management.io/sdk-go v1.1.1-0.20251209031938-62521c9935ac
6161
sigs.k8s.io/yaml v1.6.0
6262
)
6363

6464
require (
6565
cel.dev/expr v0.24.0 // indirect
66-
cloud.google.com/go/compute/metadata v0.6.0 // indirect
66+
cloud.google.com/go v0.121.6 // indirect
67+
cloud.google.com/go/auth v0.17.0 // indirect
68+
cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect
69+
cloud.google.com/go/compute/metadata v0.9.0 // indirect
70+
cloud.google.com/go/iam v1.5.2 // indirect
71+
cloud.google.com/go/pubsub/v2 v2.3.0 // indirect
6772
filippo.io/edwards25519 v1.1.0 // indirect
6873
github.com/Azure/azure-sdk-for-go/sdk/internal v1.9.0 // indirect
6974
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
@@ -75,23 +80,19 @@ require (
7580
github.com/beorn7/perks v1.0.1 // indirect
7681
github.com/blang/semver/v4 v4.0.0 // indirect
7782
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
83+
github.com/cenkalti/backoff/v5 v5.0.3 // indirect
7884
github.com/cespare/xxhash/v2 v2.3.0 // indirect
79-
github.com/cloudevents/sdk-go/protocol/kafka_confluent/v2 v2.0.0-20240413090539-7fef29478991 // indirect
8085
github.com/cloudevents/sdk-go/protocol/mqtt_paho/v2 v2.0.0-20250922144431-372892d7c84d // indirect
81-
github.com/confluentinc/confluent-kafka-go/v2 v2.3.0 // indirect
82-
github.com/containerd/errdefs v1.0.0 // indirect
83-
github.com/containerd/log v0.1.0 // indirect
8486
github.com/coreos/go-semver v0.3.1 // indirect
8587
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
8688
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
87-
github.com/distribution/reference v0.6.0 // indirect
8889
github.com/eclipse/paho.golang v0.23.0 // indirect
89-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
90+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
9091
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
9192
github.com/felixge/fgprof v0.9.4 // indirect
9293
github.com/felixge/httpsnoop v1.0.4 // indirect
93-
github.com/fsnotify/fsnotify v1.7.0 // indirect
94-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
94+
github.com/fsnotify/fsnotify v1.9.0 // indirect
95+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
9596
github.com/go-logr/logr v1.4.3 // indirect
9697
github.com/go-logr/stdr v1.2.2 // indirect
9798
github.com/go-openapi/jsonpointer v0.21.0 // indirect
@@ -103,13 +104,17 @@ require (
103104
github.com/golang-jwt/jwt/v5 v5.2.2 // indirect
104105
github.com/golang/protobuf v1.5.4 // indirect
105106
github.com/google/btree v1.1.3 // indirect
106-
github.com/google/cel-go v0.26.0 // indirect
107-
github.com/google/gnostic-models v0.6.9 // indirect
107+
github.com/google/cel-go v0.26.1 // indirect
108+
github.com/google/gnostic-models v0.7.0 // indirect
108109
github.com/google/go-cmp v0.7.0 // indirect
109110
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 // indirect
111+
github.com/google/s2a-go v0.1.9 // indirect
112+
github.com/googleapis/enterprise-certificate-proxy v0.3.6 // indirect
113+
github.com/googleapis/gax-go/v2 v2.15.0 // indirect
110114
github.com/gorilla/css v1.0.0 // indirect
115+
github.com/grafana/regexp v0.0.0-20240518133315-a468a5bfb3bc // indirect
111116
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
112-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.1 // indirect
117+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect
113118
github.com/inconshreveable/mousetrap v1.1.0 // indirect
114119
github.com/jackc/pgpassfile v1.0.0 // indirect
115120
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
@@ -120,86 +125,84 @@ require (
120125
github.com/kylelemons/godebug v1.1.0 // indirect
121126
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect
122127
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect
123-
github.com/magiconair/properties v1.8.7 // indirect
124128
github.com/mailru/easyjson v0.7.7 // indirect
125129
github.com/mattn/go-sqlite3 v1.14.22 // indirect
126130
github.com/microcosm-cc/bluemonday v1.0.23 // indirect
127-
github.com/moby/patternmatcher v0.6.0 // indirect
128-
github.com/moby/sys/sequential v0.6.0 // indirect
129-
github.com/moby/sys/user v0.4.0 // indirect
130-
github.com/moby/sys/userns v0.1.0 // indirect
131131
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
132-
github.com/modern-go/reflect2 v1.0.2 // indirect
132+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
133133
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
134134
github.com/openshift-online/ocm-api-model/clientapi v0.0.439 // indirect
135135
github.com/openshift-online/ocm-api-model/model v0.0.439 // indirect
136-
github.com/openshift/api v0.0.0-20250710004639-926605d3338b // indirect
137-
github.com/openshift/client-go v0.0.0-20250710075018-396b36f983ee // indirect
136+
github.com/openshift/api v0.0.0-20251125174858-5cf710f68a92 // indirect
137+
github.com/openshift/client-go v0.0.0-20251125141819-b6281947c285 // indirect
138138
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect
139139
github.com/pkg/errors v0.9.1 // indirect
140140
github.com/pkg/profile v1.7.0 // indirect
141+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
141142
github.com/prometheus/client_model v0.6.2 // indirect
142143
github.com/prometheus/common v0.66.1 // indirect
143-
github.com/prometheus/procfs v0.16.1 // indirect
144-
github.com/robfig/cron v1.2.0 // indirect
144+
github.com/prometheus/otlptranslator v0.0.2 // indirect
145+
github.com/prometheus/procfs v0.17.0 // indirect
145146
github.com/sirupsen/logrus v1.9.3 // indirect
146147
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 // indirect
147-
github.com/stoewer/go-strcase v1.3.0 // indirect
148+
github.com/stoewer/go-strcase v1.3.1 // indirect
148149
github.com/x448/float16 v0.8.4 // indirect
149-
go.etcd.io/etcd/api/v3 v3.5.21 // indirect
150-
go.etcd.io/etcd/client/pkg/v3 v3.5.21 // indirect
151-
go.etcd.io/etcd/client/v3 v3.5.21 // indirect
152-
go.opentelemetry.io/auto/sdk v1.1.0 // indirect
153-
go.opentelemetry.io/contrib/bridges/prometheus v0.60.0 // indirect
154-
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 // indirect
155-
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.11.0 // indirect
156-
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp v0.11.0 // indirect
157-
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.35.0 // indirect
158-
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.35.0 // indirect
159-
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.35.0 // indirect
160-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.35.0 // indirect
161-
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.35.0 // indirect
162-
go.opentelemetry.io/otel/exporters/prometheus v0.57.0 // indirect
163-
go.opentelemetry.io/otel/exporters/stdout/stdoutlog v0.11.0 // indirect
164-
go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.35.0 // indirect
165-
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.35.0 // indirect
166-
go.opentelemetry.io/otel/log v0.11.0 // indirect
167-
go.opentelemetry.io/otel/metric v1.35.0 // indirect
168-
go.opentelemetry.io/otel/sdk/log v0.11.0 // indirect
169-
go.opentelemetry.io/otel/sdk/metric v1.35.0 // indirect
170-
go.opentelemetry.io/proto/otlp v1.5.0 // indirect
171-
go.uber.org/automaxprocs v1.6.0 // indirect
150+
go.etcd.io/etcd/api/v3 v3.6.4 // indirect
151+
go.etcd.io/etcd/client/pkg/v3 v3.6.4 // indirect
152+
go.etcd.io/etcd/client/v3 v3.6.4 // indirect
153+
go.opencensus.io v0.24.0 // indirect
154+
go.opentelemetry.io/auto/sdk v1.2.1 // indirect
155+
go.opentelemetry.io/contrib/bridges/prometheus v0.63.0 // indirect
156+
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0 // indirect
157+
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc v0.14.0 // indirect
158+
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp v0.14.0 // indirect
159+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v1.38.0 // indirect
160+
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v1.38.0 // indirect
161+
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.38.0 // indirect
162+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.38.0 // indirect
163+
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.38.0 // indirect
164+
go.opentelemetry.io/otel/exporters/prometheus v0.60.0 // indirect
165+
go.opentelemetry.io/otel/exporters/stdout/stdoutlog v0.14.0 // indirect
166+
go.opentelemetry.io/otel/exporters/stdout/stdoutmetric v1.38.0 // indirect
167+
go.opentelemetry.io/otel/exporters/stdout/stdouttrace v1.38.0 // indirect
168+
go.opentelemetry.io/otel/log v0.14.0 // indirect
169+
go.opentelemetry.io/otel/metric v1.38.0 // indirect
170+
go.opentelemetry.io/otel/sdk/log v0.14.0 // indirect
171+
go.opentelemetry.io/otel/sdk/metric v1.38.0 // indirect
172+
go.opentelemetry.io/proto/otlp v1.7.1 // indirect
172173
go.uber.org/multierr v1.11.0 // indirect
173174
go.uber.org/zap v1.27.1 // indirect
174175
go.yaml.in/yaml/v2 v2.4.2 // indirect
175176
go.yaml.in/yaml/v3 v3.0.4 // indirect
176177
golang.org/x/crypto v0.43.0 // indirect
177178
golang.org/x/exp v0.0.0-20241217172543-b2144cdd0a67 // indirect
178-
golang.org/x/net v0.46.0 // indirect
179+
golang.org/x/mod v0.28.0 // indirect
180+
golang.org/x/net v0.46.1-0.20251013234738-63d1a5100f82 // indirect
179181
golang.org/x/sync v0.17.0 // indirect
180182
golang.org/x/sys v0.37.0 // indirect
181183
golang.org/x/term v0.36.0 // indirect
182184
golang.org/x/text v0.30.0 // indirect
183-
golang.org/x/time v0.12.0 // indirect
185+
golang.org/x/time v0.14.0 // indirect
184186
golang.org/x/tools v0.37.0 // indirect
185187
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
186-
google.golang.org/genproto v0.0.0-20240213162025-012b6fc9bca9 // indirect
187-
google.golang.org/genproto/googleapis/api v0.0.0-20250218202821-56aae31c358a // indirect
188-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
188+
google.golang.org/api v0.255.0 // indirect
189+
google.golang.org/genproto v0.0.0-20250603155806-513f23925822 // indirect
190+
google.golang.org/genproto/googleapis/api v0.0.0-20251022142026-3a174f9686a8 // indirect
191+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251029180050-ab9386a59fda // indirect
189192
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
190193
gopkg.in/inf.v0 v0.9.1 // indirect
191194
gopkg.in/natefinch/lumberjack.v2 v2.2.1 // indirect
192195
gopkg.in/yaml.v2 v2.4.0 // indirect
193196
gopkg.in/yaml.v3 v3.0.1 // indirect
194197
gorm.io/driver/mysql v1.5.6 // indirect
195-
k8s.io/apiextensions-apiserver v0.33.4 // indirect
196-
k8s.io/kms v0.33.4 // indirect
197-
k8s.io/kube-aggregator v0.33.4 // indirect
198-
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
198+
k8s.io/apiextensions-apiserver v0.34.2 // indirect
199+
k8s.io/kms v0.34.2 // indirect
200+
k8s.io/kube-aggregator v0.34.2 // indirect
201+
k8s.io/kube-openapi v0.0.0-20250710124328-f3f2b991d03b // indirect
199202
sigs.k8s.io/apiserver-network-proxy/konnectivity-client v0.31.2 // indirect
200-
sigs.k8s.io/controller-runtime v0.21.0 // indirect
203+
sigs.k8s.io/controller-runtime v0.22.4 // indirect
201204
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
202205
sigs.k8s.io/kube-storage-version-migrator v0.0.6-0.20230721195810-5c8923c5ff96 // indirect
203206
sigs.k8s.io/randfill v1.0.0 // indirect
204-
sigs.k8s.io/structured-merge-diff/v4 v4.6.0 // indirect
207+
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
205208
)

0 commit comments

Comments
 (0)