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 f67cf0f

Browse files
committedAug 20, 2018
UPSTREAM: <carry>: oc debug fix crash on attach
o.AttachFunc is nil since we use our own custom `oc debug` command. Attaching the defaultAttachFunc if nil fixes the crash and gives a prompt. Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1618522
1 parent 70c96cb commit f67cf0f

File tree

2 files changed

+7
-10
lines changed

2 files changed

+7
-10
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-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)
Please sign in to comment.