mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 02:41:25 +00:00
This updates vendored runc/libcontainer to 1.1.0, and google/cadvisor to a version updated to runc 1.1.0 (google/cadvisor#3048). Changes in vendor are generated by (roughly): ./hack/pin-dependency.sh github.com/google/cadvisor v0.44.0 ./hack/pin-dependency.sh github.com/opencontainers/runc v1.1.0 ./hack/update-vendor.sh ./hack/lint-dependencies.sh # And follow all its recommendations. ./hack/update-vendor.sh ./hack/update-internal-modules.sh ./hack/lint-dependencies.sh # Re-check everything again. Co-Authored-By: Kir Kolyshkin <kolyshkin@gmail.com>
14 lines
440 B
Go
14 lines
440 B
Go
package libcontainer
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrExist = errors.New("container with given ID already exists")
|
|
ErrInvalidID = errors.New("invalid container ID format")
|
|
ErrNotExist = errors.New("container does not exist")
|
|
ErrPaused = errors.New("container paused")
|
|
ErrRunning = errors.New("container still running")
|
|
ErrNotRunning = errors.New("container not running")
|
|
ErrNotPaused = errors.New("container not paused")
|
|
)
|