Merge pull request #101 from th0m/tlefebvre/add-terminal-resizing-support

Add support for terminal resizing in alloc exec
This commit is contained in:
Shishir 2021-07-12 12:09:03 -07:00 committed by GitHub
commit 18db88651b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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)