2018-01-23 08:57:36 -05:00
|
|
|
// +build !linux
|
|
|
|
|
|
|
|
package lib
|
|
|
|
|
2018-01-29 03:57:27 -05:00
|
|
|
import (
|
|
|
|
"github.com/kubernetes-incubator/cri-o/lib/sandbox"
|
|
|
|
"github.com/kubernetes-incubator/cri-o/oci"
|
|
|
|
"github.com/pkg/errors"
|
|
|
|
)
|
2018-01-23 08:57:36 -05:00
|
|
|
|
|
|
|
func (c *ContainerServer) addSandboxPlatform(sb *sandbox.Sandbox) {
|
|
|
|
// nothin' doin'
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *ContainerServer) removeSandboxPlatform(sb *sandbox.Sandbox) {
|
|
|
|
// nothin' doin'
|
|
|
|
}
|
2018-01-29 03:57:27 -05:00
|
|
|
|
|
|
|
func (c *ContainerServer) getContainerStats(ctr *oci.Container, previousStats *ContainerStats) (*ContainerStats, error) {
|
|
|
|
// nothin' doin'
|
|
|
|
return nil, errors.New("container stats not supported")
|
|
|
|
}
|