Add support for terminal resizing in alloc exec

This commit is contained in:
Thomas Lefebvre 2021-07-09 17:12:20 -07:00
parent 3ae086ede6
commit 24a7108c5d

View File

@ -143,6 +143,20 @@ func (h *taskHandle) exec(ctx, ctxContainerd context.Context, taskID string, opt
if err != nil {
return nil, err
}
go func() {
for {
select {
case s, ok := <-opts.ResizeCh:
if !ok {
return
}
if err = h.task.Resize(ctxContainerd, uint32(s.Width), uint32(s.Height)); err != nil {
h.logger.Error("Failed to resize terminal", "error", err)
return
}
}
}
}()
defer process.Delete(ctxContainerd)