Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 62766d2

Browse files
committedMar 20, 2025·
drop: pull api changes to client-go for testing
1 parent 0da5085 commit 62766d2

File tree

22 files changed

+424
-51
lines changed

22 files changed

+424
-51
lines changed
 

‎go.mod

+9-7
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.23.4
55
require (
66
github.com/blang/semver v3.5.1+incompatible
77
github.com/google/go-cmp v0.7.0
8-
github.com/openshift/api v0.0.0-20250130171037-7bb8a0201a56
8+
github.com/openshift/api v0.0.0-20250313134101-8a7efbfb5316
99
github.com/openshift/build-machinery-go v0.0.0-20250102153059-e85a1a7ecb5c
1010
github.com/openshift/client-go v0.0.0-20250131180035-f7ec47e2d87a
1111
github.com/openshift/library-go v0.0.0-20250228164547-bad2d1bf3a37
@@ -14,9 +14,9 @@ require (
1414
github.com/vmware/govmomi v0.48.1
1515
gopkg.in/gcfg.v1 v1.2.3
1616
gopkg.in/ini.v1 v1.67.0
17-
k8s.io/api v0.32.2
17+
k8s.io/api v0.32.3
1818
k8s.io/apiextensions-apiserver v0.32.2
19-
k8s.io/apimachinery v0.32.2
19+
k8s.io/apimachinery v0.32.3
2020
k8s.io/client-go v0.32.2
2121
k8s.io/cloud-provider-vsphere v1.32.2
2222
k8s.io/component-base v0.32.2
@@ -27,6 +27,8 @@ require (
2727

2828
replace github.com/openshift/api => github.com/RomanBednar/api v0.0.0-20250311094636-c86f460c7c1a
2929

30+
replace github.com/openshift/client-go => github.com/RomanBednar/client-go v0.0.0-20250318081043-626ad89b1409
31+
3032
require (
3133
cel.dev/expr v0.21.2 // indirect
3234
github.com/NYTimes/gziphandler v1.1.1 // indirect
@@ -95,14 +97,14 @@ require (
9597
go.opentelemetry.io/proto/otlp v1.4.0 // indirect
9698
go.uber.org/multierr v1.11.0 // indirect
9799
go.uber.org/zap v1.27.0 // indirect
98-
golang.org/x/crypto v0.35.0 // indirect
100+
golang.org/x/crypto v0.36.0 // indirect
99101
golang.org/x/exp v0.0.0-20250228200357-dead58393ab7 // indirect
100-
golang.org/x/net v0.36.0 // indirect
102+
golang.org/x/net v0.37.0 // indirect
101103
golang.org/x/oauth2 v0.28.0 // indirect
102104
golang.org/x/sync v0.12.0 // indirect
103105
golang.org/x/sys v0.31.0 // indirect
104-
golang.org/x/term v0.29.0 // indirect
105-
golang.org/x/text v0.22.0 // indirect
106+
golang.org/x/term v0.30.0 // indirect
107+
golang.org/x/text v0.23.0 // indirect
106108
golang.org/x/time v0.11.0 // indirect
107109
google.golang.org/genproto v0.0.0-20240725223205-93522f1f2a9f // indirect
108110
google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb // indirect

‎go.sum

+14-14
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ github.com/NYTimes/gziphandler v1.1.1 h1:ZUDjpQae29j0ryrS0u/B8HZfJBtBQHjqw2rQ2cq
44
github.com/NYTimes/gziphandler v1.1.1/go.mod h1:n/CVRwUEOgIxrgPvAQhUUr9oeUtvrhMomdKFjzJNB0c=
55
github.com/RomanBednar/api v0.0.0-20250311094636-c86f460c7c1a h1:Ak88fYDDe5vIWGgr3N/fMAqf8/45wHEyoG7ZTzPLs8o=
66
github.com/RomanBednar/api v0.0.0-20250311094636-c86f460c7c1a/go.mod h1:yk60tHAmHhtVpJQo3TwVYq2zpuP70iJIFDCmeKMIzPw=
7+
github.com/RomanBednar/client-go v0.0.0-20250318081043-626ad89b1409 h1:J93FnUbgtdsP9AcJvvH43cQHuwMINIdHKlzqdHnD1dc=
8+
github.com/RomanBednar/client-go v0.0.0-20250318081043-626ad89b1409/go.mod h1:ijFO+4/0AdpATlE27wargApB77xWH7QV/2fl3mQzo2U=
79
github.com/antlr4-go/antlr/v4 v4.13.1 h1:SqQKkuVZ+zWkMMNkjy5FZe5mr5WURWnlpmOuzYWrPrQ=
810
github.com/antlr4-go/antlr/v4 v4.13.1/go.mod h1:GKmUxMtwp6ZgGwZSva4eWPC5mS6vUAmOABFgjdkM7Nw=
911
github.com/asaskevich/govalidator v0.0.0-20230301143203-a9d515a09cc2 h1:DklsrG3dyBCFEj5IhUbnKptjxatkF07cF2ak3yi77so=
@@ -144,8 +146,6 @@ github.com/onsi/gomega v1.35.1 h1:Cwbd75ZBPxFSuZ6T+rN/WCb/gOc6YgFBXLlZLhC7Ds4=
144146
github.com/onsi/gomega v1.35.1/go.mod h1:PvZbdDc8J6XJEpDK4HCuRBm8a6Fzp9/DmhC9C7yFlog=
145147
github.com/openshift/build-machinery-go v0.0.0-20250102153059-e85a1a7ecb5c h1:6XcszPFZpan4qll5XbdLll7n1So3IsPn28aw2j1obMo=
146148
github.com/openshift/build-machinery-go v0.0.0-20250102153059-e85a1a7ecb5c/go.mod h1:8jcm8UPtg2mCAsxfqKil1xrmRMI3a+XU2TZ9fF8A7TE=
147-
github.com/openshift/client-go v0.0.0-20250131180035-f7ec47e2d87a h1:duO3JMrUOqVx50QhzxvDeOYIwTNOB8/EEuRLPyvAMBg=
148-
github.com/openshift/client-go v0.0.0-20250131180035-f7ec47e2d87a/go.mod h1:Qw3ThpzVZ0bfTILpBNYg4LGyjtNxfyCiGh/uDLOOTP8=
149149
github.com/openshift/library-go v0.0.0-20250228164547-bad2d1bf3a37 h1:/YhxswjRkADbww682dqckHddV/AVfwQHFn/XTf2fjsk=
150150
github.com/openshift/library-go v0.0.0-20250228164547-bad2d1bf3a37/go.mod h1:GHwvopE5KXXCz4ULHp871sTPLLW+FB+hu/RIzlNwxx8=
151151
github.com/orisano/pixelmatch v0.0.0-20220722002657-fb0b55479cde/go.mod h1:nZgzbfBr3hhjoZnS66nKrHmduYNpc34ny7RK4z5/HM0=
@@ -248,8 +248,8 @@ go.uber.org/zap v1.27.0/go.mod h1:GB2qFLM7cTU87MWRP2mPIjqfIDnGu+VIO4V/SdhGo2E=
248248
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
249249
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550/go.mod h1:yigFU9vqHzYiE8UmvKecakEJjdnWj3jj499lnFckfCI=
250250
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
251-
golang.org/x/crypto v0.35.0 h1:b15kiHdrGCHrP6LvwaQ3c03kgNhhiMgvlhxHQhmg2Xs=
252-
golang.org/x/crypto v0.35.0/go.mod h1:dy7dXNW32cAb/6/PRuTNsix8T+vJAqvuIy5Bli/x0YQ=
251+
golang.org/x/crypto v0.36.0 h1:AnAEvhDddvBdpY+uR+MyHmuZzzNqXSe/GvuDeob5L34=
252+
golang.org/x/crypto v0.36.0/go.mod h1:Y4J0ReaxCR1IMaabaSMugxJES1EpwhBHhv2bDHklZvc=
253253
golang.org/x/exp v0.0.0-20250228200357-dead58393ab7 h1:aWwlzYV971S4BXRS9AmqwDLAD85ouC6X+pocatKY58c=
254254
golang.org/x/exp v0.0.0-20250228200357-dead58393ab7/go.mod h1:BHOTPb3L19zxehTsLoJXVaTktb06DFgmdW6Wb9s8jqk=
255255
golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
@@ -258,8 +258,8 @@ golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn
258258
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
259259
golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
260260
golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
261-
golang.org/x/net v0.36.0 h1:vWF2fRbw4qslQsQzgFqZff+BItCvGFQqKzKIzx1rmoA=
262-
golang.org/x/net v0.36.0/go.mod h1:bFmbeoIPfrw4sMHNhb4J9f6+tPziuGjq7Jk/38fxi1I=
261+
golang.org/x/net v0.37.0 h1:1zLorHbz+LYj7MQlSf1+2tPIIgibq2eL5xkrGk6f+2c=
262+
golang.org/x/net v0.37.0/go.mod h1:ivrbrMbzFq5J41QOQh0siUuly180yBYtLp+CKbEaFx8=
263263
golang.org/x/oauth2 v0.28.0 h1:CrgCKl8PPAVtLnU3c+EDw6x11699EWlsDeWNWKdIOkc=
264264
golang.org/x/oauth2 v0.28.0/go.mod h1:onh5ek6nERTohokkhCD/y2cV4Do3fxFHFuAejCkRWT8=
265265
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
@@ -276,12 +276,12 @@ golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8/go.mod h1:oPkhp1MJrh7nUepCBc
276276
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
277277
golang.org/x/sys v0.31.0 h1:ioabZlmFYtWhL+TRYpcnNlLwhyxaM9kWTDEmfnprqik=
278278
golang.org/x/sys v0.31.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
279-
golang.org/x/term v0.29.0 h1:L6pJp37ocefwRRtYPKSWOWzOtWSxVajvz2ldH/xi3iU=
280-
golang.org/x/term v0.29.0/go.mod h1:6bl4lRlvVuDgSf3179VpIxBF0o10JUpXWOnI7nErv7s=
279+
golang.org/x/term v0.30.0 h1:PQ39fJZ+mfadBm0y5WlL4vlM7Sx1Hgf13sMIY2+QS9Y=
280+
golang.org/x/term v0.30.0/go.mod h1:NYYFdzHoI5wRh/h5tDMdMqCqPJZEuNqVR5xJLd/n67g=
281281
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
282282
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
283-
golang.org/x/text v0.22.0 h1:bofq7m3/HAFvbF51jz3Q9wLg3jkvSPuiZu/pD1XwgtM=
284-
golang.org/x/text v0.22.0/go.mod h1:YRoo4H8PVmsu+E3Ou7cqLVH8oXWIHVoX0jqUWALQhfY=
283+
golang.org/x/text v0.23.0 h1:D71I7dUrlY+VX0gQShAThNGHFxZ13dGLBHQLVl1mJlY=
284+
golang.org/x/text v0.23.0/go.mod h1:/BLNzu4aZCJ1+kcD0DNRotWKage4q2rGVAg4o22unh4=
285285
golang.org/x/time v0.11.0 h1:/bpjEDfN9tkoN/ryeYHnv5hcMlc8ncjMcM4XBk5NWV0=
286286
golang.org/x/time v0.11.0/go.mod h1:CDIdPxbZBQxdj6cxyCIdrNogrJKMJ7pr37NYpMcMDSg=
287287
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
@@ -324,12 +324,12 @@ gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
324324
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
325325
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
326326
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
327-
k8s.io/api v0.32.2 h1:bZrMLEkgizC24G9eViHGOPbW+aRo9duEISRIJKfdJuw=
328-
k8s.io/api v0.32.2/go.mod h1:hKlhk4x1sJyYnHENsrdCWw31FEmCijNGPJO5WzHiJ6Y=
327+
k8s.io/api v0.32.3 h1:Hw7KqxRusq+6QSplE3NYG4MBxZw1BZnq4aP4cJVINls=
328+
k8s.io/api v0.32.3/go.mod h1:2wEDTXADtm/HA7CCMD8D8bK4yuBUptzaRhYcYEEYA3k=
329329
k8s.io/apiextensions-apiserver v0.32.2 h1:2YMk285jWMk2188V2AERy5yDwBYrjgWYggscghPCvV4=
330330
k8s.io/apiextensions-apiserver v0.32.2/go.mod h1:GPwf8sph7YlJT3H6aKUWtd0E+oyShk/YHWQHf/OOgCA=
331-
k8s.io/apimachinery v0.32.2 h1:yoQBR9ZGkA6Rgmhbp/yuT9/g+4lxtsGYwW6dR6BDPLQ=
332-
k8s.io/apimachinery v0.32.2/go.mod h1:GpHVgxoKlTxClKcteaeuF1Ul/lDVb74KpZcxcmLDElE=
331+
k8s.io/apimachinery v0.32.3 h1:JmDuDarhDmA/Li7j3aPrwhpNBA94Nvk5zLeOge9HH1U=
332+
k8s.io/apimachinery v0.32.3/go.mod h1:GpHVgxoKlTxClKcteaeuF1Ul/lDVb74KpZcxcmLDElE=
333333
k8s.io/apiserver v0.32.2 h1:WzyxAu4mvLkQxwD9hGa4ZfExo3yZZaYzoYvvVDlM6vw=
334334
k8s.io/apiserver v0.32.2/go.mod h1:PEwREHiHNU2oFdte7BjzA1ZyjWjuckORLIK/wLV5goM=
335335
k8s.io/client-go v0.32.2 h1:4dYCD4Nz+9RApM2b/3BtVvBHw54QjMFUl1OLcJG5yOA=

‎vendor/github.com/openshift/client-go/config/applyconfigurations/config/v1/gcpplatformstatus.go

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/openshift/client-go/config/applyconfigurations/config/v1/gcpserviceendpoint.go

+36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/openshift/client-go/config/applyconfigurations/config/v1/ibmcloudplatformspec.go

+28
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/openshift/client-go/config/applyconfigurations/config/v1/platformspec.go

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/openshift/client-go/config/applyconfigurations/config/v1alpha1/gatherconfig.go

+12-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/openshift/client-go/config/applyconfigurations/config/v1alpha1/persistentvolumeclaimreference.go

+23
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/openshift/client-go/config/applyconfigurations/config/v1alpha1/persistentvolumeconfig.go

+32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/openshift/client-go/config/applyconfigurations/config/v1alpha1/pki.go

+45
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/openshift/client-go/config/applyconfigurations/config/v1alpha1/pkicertificatesubject.go

+32
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/openshift/client-go/config/applyconfigurations/config/v1alpha1/policyrootoftrust.go

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/openshift/client-go/config/applyconfigurations/config/v1alpha1/storage.go

+36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/openshift/client-go/config/applyconfigurations/internal/internal.go

+85-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/openshift/client-go/config/applyconfigurations/utils.go

+14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/openshift/client-go/operator/applyconfigurations/internal/internal.go

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/github.com/openshift/client-go/operator/applyconfigurations/operator/v1/vspherecsidriverconfigspec.go

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/golang.org/x/text/internal/number/format.go

-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/golang.org/x/text/language/parse.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/k8s.io/api/resource/v1alpha3/types.go

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/k8s.io/api/resource/v1beta1/types.go

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎vendor/modules.txt

+11-10
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ github.com/modern-go/reflect2
178178
# github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
179179
## explicit
180180
github.com/munnerz/goautoneg
181-
# github.com/openshift/api v0.0.0-20250130171037-7bb8a0201a56 => github.com/RomanBednar/api v0.0.0-20250311094636-c86f460c7c1a
181+
# github.com/openshift/api v0.0.0-20250313134101-8a7efbfb5316 => github.com/RomanBednar/api v0.0.0-20250311094636-c86f460c7c1a
182182
## explicit; go 1.23.0
183183
github.com/openshift/api
184184
github.com/openshift/api/annotations
@@ -260,7 +260,7 @@ github.com/openshift/build-machinery-go/make/targets/golang
260260
github.com/openshift/build-machinery-go/make/targets/openshift
261261
github.com/openshift/build-machinery-go/make/targets/openshift/operator
262262
github.com/openshift/build-machinery-go/scripts
263-
# github.com/openshift/client-go v0.0.0-20250131180035-f7ec47e2d87a
263+
# github.com/openshift/client-go v0.0.0-20250131180035-f7ec47e2d87a => github.com/RomanBednar/client-go v0.0.0-20250318081043-626ad89b1409
264264
## explicit; go 1.23.0
265265
github.com/openshift/client-go/config/applyconfigurations
266266
github.com/openshift/client-go/config/applyconfigurations/config/v1
@@ -550,7 +550,7 @@ go.uber.org/zap/internal/pool
550550
go.uber.org/zap/internal/stacktrace
551551
go.uber.org/zap/zapcore
552552
go.uber.org/zap/zapgrpc
553-
# golang.org/x/crypto v0.35.0
553+
# golang.org/x/crypto v0.36.0
554554
## explicit; go 1.23.0
555555
golang.org/x/crypto/cryptobyte
556556
golang.org/x/crypto/cryptobyte/asn1
@@ -562,7 +562,7 @@ golang.org/x/crypto/salsa20/salsa
562562
# golang.org/x/exp v0.0.0-20250228200357-dead58393ab7
563563
## explicit; go 1.23.0
564564
golang.org/x/exp/slices
565-
# golang.org/x/net v0.36.0
565+
# golang.org/x/net v0.37.0
566566
## explicit; go 1.23.0
567567
golang.org/x/net/context
568568
golang.org/x/net/http/httpguts
@@ -587,11 +587,11 @@ golang.org/x/sys/plan9
587587
golang.org/x/sys/unix
588588
golang.org/x/sys/windows
589589
golang.org/x/sys/windows/registry
590-
# golang.org/x/term v0.29.0
591-
## explicit; go 1.18
590+
# golang.org/x/term v0.30.0
591+
## explicit; go 1.23.0
592592
golang.org/x/term
593-
# golang.org/x/text v0.22.0
594-
## explicit; go 1.18
593+
# golang.org/x/text v0.23.0
594+
## explicit; go 1.23.0
595595
golang.org/x/text/feature/plural
596596
golang.org/x/text/internal
597597
golang.org/x/text/internal/catmsg
@@ -760,7 +760,7 @@ gopkg.in/yaml.v2
760760
# gopkg.in/yaml.v3 v3.0.1
761761
## explicit
762762
gopkg.in/yaml.v3
763-
# k8s.io/api v0.32.2
763+
# k8s.io/api v0.32.3
764764
## explicit; go 1.23.0
765765
k8s.io/api/admission/v1
766766
k8s.io/api/admission/v1beta1
@@ -832,7 +832,7 @@ k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset
832832
k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/scheme
833833
k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1
834834
k8s.io/apiextensions-apiserver/pkg/client/clientset/clientset/typed/apiextensions/v1beta1
835-
# k8s.io/apimachinery v0.32.2
835+
# k8s.io/apimachinery v0.32.3
836836
## explicit; go 1.23.0
837837
k8s.io/apimachinery/pkg/api/equality
838838
k8s.io/apimachinery/pkg/api/errors
@@ -1521,3 +1521,4 @@ sigs.k8s.io/structured-merge-diff/v4/value
15211521
sigs.k8s.io/yaml
15221522
sigs.k8s.io/yaml/goyaml.v2
15231523
# github.com/openshift/api => github.com/RomanBednar/api v0.0.0-20250311094636-c86f460c7c1a
1524+
# github.com/openshift/client-go => github.com/RomanBednar/client-go v0.0.0-20250318081043-626ad89b1409

0 commit comments

Comments
 (0)
Please sign in to comment.