Skip to content

Commit 64ac00d

Browse files
Merge pull request #20697 from rphillips/fix/1618522
oc debug: fix crash on attach
2 parents 7840b4d + b051e60 commit 64ac00d

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

pkg/oc/cli/debug/debug.go

+5-9
Original file line numberDiff line numberDiff line change
@@ -139,21 +139,17 @@ type DebugOptions struct {
139139
}
140140

141141
func NewDebugOptions(streams genericclioptions.IOStreams) *DebugOptions {
142+
attachOpts := kcmd.NewAttachOptions(streams)
143+
attachOpts.TTY = true
144+
attachOpts.Stdin = true
142145
return &DebugOptions{
143146
PrintFlags: genericclioptions.NewPrintFlags("").WithTypeSetter(scheme.Scheme),
144147
IOStreams: streams,
145148
Timeout: 15 * time.Minute,
146149
KeepInitContainers: true,
147150
AsUser: -1,
148-
Attach: kcmd.AttachOptions{
149-
StreamOptions: kcmd.StreamOptions{
150-
IOStreams: streams,
151-
TTY: true,
152-
Stdin: true,
153-
},
154-
Attach: &kcmd.DefaultRemoteAttach{},
155-
},
156-
LogsForObject: polymorphichelpers.LogsForObjectFn,
151+
Attach: *attachOpts,
152+
LogsForObject: polymorphichelpers.LogsForObjectFn,
157153
}
158154
}
159155

vendor/k8s.io/kubernetes/pkg/kubectl/cmd/attach.go

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

0 commit comments

Comments
 (0)