File tree 3 files changed +6
-4
lines changed 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ require (
29
29
github.com/stretchr/testify v1.10.0
30
30
golang.org/x/sys v0.30.0
31
31
gopkg.in/evanphx/json-patch.v4 v4.12.0
32
- k8s.io/api v0.0.0-20250319053034-feb95d943ada
32
+ k8s.io/api v0.0.0-20250319173042-c5abc769f013
33
33
k8s.io/apimachinery v0.0.0-20250319092800-e8a77bd768fd
34
34
k8s.io/cli-runtime v0.0.0-20250319060948-178adec27e2b
35
35
k8s.io/client-go v0.0.0-20250319053412-169f1af1bf07
Original file line number Diff line number Diff line change @@ -196,8 +196,8 @@ gopkg.in/inf.v0 v0.9.1/go.mod h1:cWUDdTG/fYaXco+Dcufb5Vnc6Gp2YChqWtbxRZE0mXw=
196
196
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c /go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM =
197
197
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA =
198
198
gopkg.in/yaml.v3 v3.0.1 /go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM =
199
- k8s.io/api v0.0.0-20250319053034-feb95d943ada h1:jkgp/vD+5CoL2n17AMKQ3g3ELsKmn+zBDXqwvpPvmXw =
200
- k8s.io/api v0.0.0-20250319053034-feb95d943ada /go.mod h1:MsIjX9SIqRiiwfw1r0s0lMHaMw6jhSX8h4VjblK393I =
199
+ k8s.io/api v0.0.0-20250319173042-c5abc769f013 h1:DeD6ts7mBL7HlhnkmDi00/TYm4yKLFIcpVZsIrJfjcQ =
200
+ k8s.io/api v0.0.0-20250319173042-c5abc769f013 /go.mod h1:JO0tyTI0qSXXaGVhLdqwfi3RMbS2g9hcYvzBmZP5wVk =
201
201
k8s.io/apimachinery v0.0.0-20250319092800-e8a77bd768fd h1:KoXgjwEokLM8o95kMxowg5vp5iQ4v46Kk+zobsqeTgU =
202
202
k8s.io/apimachinery v0.0.0-20250319092800-e8a77bd768fd /go.mod h1:D2UW665TVSpInyOuG6C+PMtC1MZheP0KQz65UPQEiI4 =
203
203
k8s.io/cli-runtime v0.0.0-20250319060948-178adec27e2b h1:U2IpmC0Xy+HhTucipOTB8bW6K9swj0MxHk0QUa1DsRo =
Original file line number Diff line number Diff line change @@ -389,6 +389,8 @@ func NewKubectlCommand(o KubectlOptions) *cobra.Command {
389
389
// Avoid import cycle by setting ValidArgsFunction here instead of in NewCmdGet()
390
390
getCmd := get .NewCmdGet ("kubectl" , f , o .IOStreams )
391
391
getCmd .ValidArgsFunction = utilcomp .ResourceTypeAndNameCompletionFunc (f )
392
+ debugCmd := debug .NewCmdDebug (f , o .IOStreams )
393
+ debugCmd .ValidArgsFunction = utilcomp .ResourceTypeAndNameCompletionFunc (f )
392
394
393
395
groups := templates.CommandGroups {
394
396
{
@@ -440,7 +442,7 @@ func NewKubectlCommand(o KubectlOptions) *cobra.Command {
440
442
proxyCmd ,
441
443
cp .NewCmdCp (f , o .IOStreams ),
442
444
auth .NewCmdAuth (f , o .IOStreams ),
443
- debug . NewCmdDebug ( f , o . IOStreams ) ,
445
+ debugCmd ,
444
446
events .NewCmdEvents (f , o .IOStreams ),
445
447
},
446
448
},
You can’t perform that action at this time.
0 commit comments