mirror of
https://github.com/cloudnativelabs/kube-router.git
synced 2025-11-20 12:31:04 +01:00
* feat: simple CRI implementation in addition to Docker, required for DSR functionality. CRI compliant runtimes support (e.g. containerd, cri-o, etc.) * upd: dependencies * cleanup * feat: cleanup gRPC connections after we did the job * upd: go.sum
8 lines
176 B
Go
8 lines
176 B
Go
package cri
|
|
|
|
// RuntimeService is the client API for RuntimeService service.
|
|
type RuntimeService interface {
|
|
ContainerInfo(id string) (*containerInfo, error)
|
|
Close() error
|
|
}
|