File tree 1 file changed +5
-9
lines changed
1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -139,21 +139,17 @@ type DebugOptions struct {
139
139
}
140
140
141
141
func NewDebugOptions (streams genericclioptions.IOStreams ) * DebugOptions {
142
+ attachOpts := kcmd .NewAttachOptions (streams )
143
+ attachOpts .TTY = true
144
+ attachOpts .Stdin = true
142
145
return & DebugOptions {
143
146
PrintFlags : genericclioptions .NewPrintFlags ("" ).WithTypeSetter (scheme .Scheme ),
144
147
IOStreams : streams ,
145
148
Timeout : 15 * time .Minute ,
146
149
KeepInitContainers : true ,
147
150
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 ,
157
153
}
158
154
}
159
155
You can’t perform that action at this time.
0 commit comments