Attach
接口原型
rpc Attach(AttachRequest) returns (AttachResponse) {}
接口描述
接管容器的1号进程,采用的gRPC通讯方式从CRI服务端获取url,再通过获得的url与websocket服务端建立长连接,实现与容器的交互。
参数: AttachRequest
参数成员
|
描述
|
string container_id
|
容器ID
|
bool tty
|
是否在TTY中执行命令
|
bool stdin
|
是否流式标准输入
|
bool stdout
|
是否流式标准输出
|
bool stderr
|
是否流式输出标准错误
|
返回值: ExecResponse
返回值
|
描述
|
string url
|
attach流服务器的完全限定URL
|