Implement streaming CRI methods in dockershim

This commit is contained in:
Tim St. Clair
2016-10-26 16:34:45 -07:00
parent bc7ae399f8
commit c60db99536
20 changed files with 432 additions and 64 deletions

View File

@@ -57,3 +57,8 @@ func (*PodSandboxManager) PodSandboxStatus(string) (*runtimeApi.PodSandboxStatus
func (*PodSandboxManager) ListPodSandbox(*runtimeApi.PodSandboxFilter) ([]*runtimeApi.PodSandbox, error) {
panic("not implemented")
}
// PortForward prepares a streaming endpoint to forward ports from a PodSandbox, and returns the address.
func (*PodSandboxManager) PortForward(*runtimeApi.PortForwardRequest) (*runtimeApi.PortForwardResponse, error) {
panic("not implemented")
}