commit
bb0ca842e9
@ -36,8 +36,9 @@ See [test dashboard](https://k8s-testgrid.appspot.com/sig-node-containerd)
|
|||||||
| v1.0.0-alpha.x | | 1.7, 1.8 | v1alpha1 |
|
| v1.0.0-alpha.x | | 1.7, 1.8 | v1alpha1 |
|
||||||
| v1.0.0-beta.x | | 1.9 | v1alpha1 |
|
| v1.0.0-beta.x | | 1.9 | v1alpha1 |
|
||||||
| End-Of-Life | v1.1 (End-Of-Life) | 1.10+ | v1alpha2 |
|
| End-Of-Life | v1.1 (End-Of-Life) | 1.10+ | v1alpha2 |
|
||||||
| | v1.2 | 1.10+ | v1alpha2 |
|
| | v1.2 (Extended) | 1.10+ | v1alpha2 |
|
||||||
| | v1.3 | 1.12+ | v1alpha2 |
|
| | v1.3 | 1.12+ | v1alpha2 |
|
||||||
|
| | v1.4 | 1.19+ (rc) | v1alpha2 |
|
||||||
|
|
||||||
**Note:** The support table above specifies the Kubernetes Version that was supported at time of release of the containerd - cri integration.
|
**Note:** The support table above specifies the Kubernetes Version that was supported at time of release of the containerd - cri integration.
|
||||||
|
|
||||||
@ -45,8 +46,9 @@ The following is the current support table for containerd CRI integration taking
|
|||||||
|
|
||||||
| Containerd Version | Kubernetes Version | CRI Version |
|
| Containerd Version | Kubernetes Version | CRI Version |
|
||||||
|:------------------:|:------------------:|:-----------:|
|
|:------------------:|:------------------:|:-----------:|
|
||||||
| v1.2 | 1.14+ | v1alpha2 |
|
| v1.2 | 1.15+ | v1alpha2 |
|
||||||
| v1.3 | 1.14+ | v1alpha2 |
|
| v1.3 | 1.15+ | v1alpha2 |
|
||||||
|
| v1.4 | 1.19+ (rc) | v1alpha2 |
|
||||||
|
|
||||||
## Production Quality Cluster on GCE
|
## Production Quality Cluster on GCE
|
||||||
For a production quality cluster on GCE brought up with `kube-up.sh` refer [here](docs/kube-up.md).
|
For a production quality cluster on GCE brought up with `kube-up.sh` refer [here](docs/kube-up.md).
|
||||||
|
@ -10,7 +10,7 @@ github.com/BurntSushi/toml v0.3.1
|
|||||||
github.com/cespare/xxhash/v2 v2.1.1
|
github.com/cespare/xxhash/v2 v2.1.1
|
||||||
github.com/containerd/cgroups 318312a373405e5e91134d8063d04d59768a1bff
|
github.com/containerd/cgroups 318312a373405e5e91134d8063d04d59768a1bff
|
||||||
github.com/containerd/console v1.0.0
|
github.com/containerd/console v1.0.0
|
||||||
github.com/containerd/containerd v1.4.0-rc.0
|
github.com/containerd/containerd v1.4.0
|
||||||
github.com/containerd/continuity efbc4488d8fe1bdc16bde3b2d2990d9b3a899165
|
github.com/containerd/continuity efbc4488d8fe1bdc16bde3b2d2990d9b3a899165
|
||||||
github.com/containerd/fifo f15a3290365b9d2627d189e619ab4008e0069caf
|
github.com/containerd/fifo f15a3290365b9d2627d189e619ab4008e0069caf
|
||||||
github.com/containerd/go-runc 7016d3ce2328dd2cb1192b2076ebd565c4e8df0c
|
github.com/containerd/go-runc 7016d3ce2328dd2cb1192b2076ebd565c4e8df0c
|
||||||
@ -37,8 +37,8 @@ github.com/Microsoft/go-winio v0.4.14
|
|||||||
github.com/Microsoft/hcsshim v0.8.9
|
github.com/Microsoft/hcsshim v0.8.9
|
||||||
github.com/opencontainers/go-digest v1.0.0
|
github.com/opencontainers/go-digest v1.0.0
|
||||||
github.com/opencontainers/image-spec v1.0.1
|
github.com/opencontainers/image-spec v1.0.1
|
||||||
github.com/opencontainers/runc 67169a9d43456ff0d5ae12b967acb8e366e2f181 # v1.0.0-rc91-48-g67169a9d
|
github.com/opencontainers/runc v1.0.0-rc92
|
||||||
github.com/opencontainers/runtime-spec 237cc4f519e2e8f9b235bacccfa8ef5a84df2875 # v1.0.2-14-g8e2f17c
|
github.com/opencontainers/runtime-spec 4d89ac9fbff6c455f46a5bb59c6b1bb7184a5e43 # v1.0.3-0.20200728170252-4d89ac9fbff6
|
||||||
github.com/pkg/errors v0.9.1
|
github.com/pkg/errors v0.9.1
|
||||||
github.com/prometheus/client_golang v1.6.0
|
github.com/prometheus/client_golang v1.6.0
|
||||||
github.com/prometheus/client_model v0.2.0
|
github.com/prometheus/client_model v0.2.0
|
||||||
|
2
vendor/github.com/containerd/containerd/cmd/containerd/command/oci-hook.go
generated
vendored
2
vendor/github.com/containerd/containerd/cmd/containerd/command/oci-hook.go
generated
vendored
@ -129,7 +129,7 @@ func (t *templateContext) annotation(k string) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (t *templateContext) status() string {
|
func (t *templateContext) status() string {
|
||||||
return t.state.Status
|
return string(t.state.Status)
|
||||||
}
|
}
|
||||||
|
|
||||||
func render(ctx *templateContext, source string, out io.Writer) error {
|
func render(ctx *templateContext, source string, out io.Writer) error {
|
||||||
|
24
vendor/github.com/containerd/containerd/vendor.conf
generated
vendored
24
vendor/github.com/containerd/containerd/vendor.conf
generated
vendored
@ -31,8 +31,8 @@ github.com/Microsoft/go-winio v0.4.14
|
|||||||
github.com/Microsoft/hcsshim v0.8.9
|
github.com/Microsoft/hcsshim v0.8.9
|
||||||
github.com/opencontainers/go-digest v1.0.0
|
github.com/opencontainers/go-digest v1.0.0
|
||||||
github.com/opencontainers/image-spec v1.0.1
|
github.com/opencontainers/image-spec v1.0.1
|
||||||
github.com/opencontainers/runc 67169a9d43456ff0d5ae12b967acb8e366e2f181 # v1.0.0-rc91-48-g67169a9d
|
github.com/opencontainers/runc v1.0.0-rc92
|
||||||
github.com/opencontainers/runtime-spec 237cc4f519e2e8f9b235bacccfa8ef5a84df2875 # v1.0.3-0.20200520003142-237cc4f519e2
|
github.com/opencontainers/runtime-spec 4d89ac9fbff6c455f46a5bb59c6b1bb7184a5e43 # v1.0.3-0.20200728170252-4d89ac9fbff6
|
||||||
github.com/pkg/errors v0.9.1
|
github.com/pkg/errors v0.9.1
|
||||||
github.com/prometheus/client_golang v1.6.0
|
github.com/prometheus/client_golang v1.6.0
|
||||||
github.com/prometheus/client_model v0.2.0
|
github.com/prometheus/client_model v0.2.0
|
||||||
@ -45,9 +45,9 @@ github.com/syndtr/gocapability d98352740cb2c55f81556b63d4a1
|
|||||||
github.com/urfave/cli v1.22.1 # NOTE: urfave/cli must be <= v1.22.1 due to a regression: https://github.com/urfave/cli/issues/1092
|
github.com/urfave/cli v1.22.1 # NOTE: urfave/cli must be <= v1.22.1 due to a regression: https://github.com/urfave/cli/issues/1092
|
||||||
go.etcd.io/bbolt v1.3.5
|
go.etcd.io/bbolt v1.3.5
|
||||||
go.opencensus.io v0.22.0
|
go.opencensus.io v0.22.0
|
||||||
golang.org/x/net f3200d17e092c607f615320ecaad13d87ad9a2b3
|
golang.org/x/net ab34263943818b32f575efc978a3d24e80b04bd7
|
||||||
golang.org/x/sync 42b317875d0fa942474b76e1b46a6060d720ae6e
|
golang.org/x/sync 42b317875d0fa942474b76e1b46a6060d720ae6e
|
||||||
golang.org/x/sys 9dae0f8f577553e0f21298e18926efc9644c281d
|
golang.org/x/sys ed371f2e16b4b305ee99df548828de367527b76b
|
||||||
golang.org/x/text v0.3.3
|
golang.org/x/text v0.3.3
|
||||||
google.golang.org/genproto e50cd9704f63023d62cd06a1994b98227fc4d21a
|
google.golang.org/genproto e50cd9704f63023d62cd06a1994b98227fc4d21a
|
||||||
google.golang.org/grpc v1.27.1
|
google.golang.org/grpc v1.27.1
|
||||||
@ -57,29 +57,29 @@ gotest.tools/v3 v3.0.2
|
|||||||
github.com/cilium/ebpf 1c8d4c9ef7759622653a1d319284a44652333b28
|
github.com/cilium/ebpf 1c8d4c9ef7759622653a1d319284a44652333b28
|
||||||
|
|
||||||
# cri dependencies
|
# cri dependencies
|
||||||
github.com/containerd/cri 8871d5cdf8102a7d5989c307f2a366946feb54ee # master
|
github.com/containerd/cri 4e6644c8cf7fb825f62e0007421b7d83dfeab5a1 # master
|
||||||
github.com/davecgh/go-spew v1.1.1
|
github.com/davecgh/go-spew v1.1.1
|
||||||
github.com/docker/docker 4634ce647cf2ce2c6031129ccd109e557244986f
|
github.com/docker/docker 4634ce647cf2ce2c6031129ccd109e557244986f
|
||||||
github.com/docker/spdystream 449fdfce4d962303d702fec724ef0ad181c92528
|
github.com/docker/spdystream 449fdfce4d962303d702fec724ef0ad181c92528
|
||||||
github.com/emicklei/go-restful v2.9.5
|
github.com/emicklei/go-restful v2.9.5
|
||||||
github.com/go-logr/logr v0.2.0
|
github.com/go-logr/logr v0.2.0
|
||||||
github.com/google/gofuzz v1.1.0
|
github.com/google/gofuzz v1.1.0
|
||||||
github.com/json-iterator/go v1.1.9
|
github.com/json-iterator/go v1.1.10
|
||||||
github.com/modern-go/concurrent 1.0.3
|
github.com/modern-go/concurrent 1.0.3
|
||||||
github.com/modern-go/reflect2 v1.0.1
|
github.com/modern-go/reflect2 v1.0.1
|
||||||
github.com/opencontainers/selinux v1.6.0
|
github.com/opencontainers/selinux v1.6.0
|
||||||
github.com/tchap/go-patricia v2.2.6
|
github.com/tchap/go-patricia v2.2.6
|
||||||
github.com/willf/bitset d5bec3311243426a3c6d1b7a795f24b17c686dbb # 1.1.10+ used by selinux pkg
|
github.com/willf/bitset d5bec3311243426a3c6d1b7a795f24b17c686dbb # 1.1.10+ used by selinux pkg
|
||||||
golang.org/x/crypto bac4c82f69751a6dd76e702d54b3ceb88adab236
|
golang.org/x/crypto 75b288015ac94e66e3d6715fb68a9b41bf046ec2
|
||||||
golang.org/x/oauth2 858c2ad4c8b6c5d10852cb89079f6ca1c7309787
|
golang.org/x/oauth2 858c2ad4c8b6c5d10852cb89079f6ca1c7309787
|
||||||
golang.org/x/time 555d28b269f0569763d25dbe1a237ae74c6bcc82
|
golang.org/x/time 555d28b269f0569763d25dbe1a237ae74c6bcc82
|
||||||
gopkg.in/inf.v0 v0.9.1
|
gopkg.in/inf.v0 v0.9.1
|
||||||
gopkg.in/yaml.v2 v2.2.8
|
gopkg.in/yaml.v2 v2.2.8
|
||||||
k8s.io/api v0.19.0-beta.2
|
k8s.io/api v0.19.0-rc.4
|
||||||
k8s.io/apimachinery v0.19.0-beta.2
|
k8s.io/apimachinery v0.19.0-rc.4
|
||||||
k8s.io/apiserver v0.19.0-beta.2
|
k8s.io/apiserver v0.19.0-rc.4
|
||||||
k8s.io/client-go v0.19.0-beta.2
|
k8s.io/client-go v0.19.0-rc.4
|
||||||
k8s.io/cri-api v0.19.0-beta.2
|
k8s.io/cri-api v0.19.0-rc.4
|
||||||
k8s.io/klog/v2 v2.2.0
|
k8s.io/klog/v2 v2.2.0
|
||||||
k8s.io/utils 2df71ebbae66f39338aed4cd0bb82d2212ee33cc
|
k8s.io/utils 2df71ebbae66f39338aed4cd0bb82d2212ee33cc
|
||||||
sigs.k8s.io/structured-merge-diff/v3 v3.0.0
|
sigs.k8s.io/structured-merge-diff/v3 v3.0.0
|
||||||
|
2
vendor/github.com/containerd/containerd/version/version.go
generated
vendored
2
vendor/github.com/containerd/containerd/version/version.go
generated
vendored
@ -23,7 +23,7 @@ var (
|
|||||||
Package = "github.com/containerd/containerd"
|
Package = "github.com/containerd/containerd"
|
||||||
|
|
||||||
// Version holds the complete version number. Filled in at linking time.
|
// Version holds the complete version number. Filled in at linking time.
|
||||||
Version = "1.4.0-rc.0+unknown"
|
Version = "1.4.0+unknown"
|
||||||
|
|
||||||
// Revision is filled with the VCS (e.g. git) revision being used to build
|
// Revision is filled with the VCS (e.g. git) revision being used to build
|
||||||
// the program at linking time.
|
// the program at linking time.
|
||||||
|
14
vendor/github.com/opencontainers/runc/go.mod
generated
vendored
14
vendor/github.com/opencontainers/runc/go.mod
generated
vendored
@ -3,18 +3,18 @@ module github.com/opencontainers/runc
|
|||||||
go 1.14
|
go 1.14
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/checkpoint-restore/go-criu/v4 v4.0.2
|
github.com/checkpoint-restore/go-criu/v4 v4.1.0
|
||||||
github.com/cilium/ebpf v0.0.0-20200702112145-1c8d4c9ef775
|
github.com/cilium/ebpf v0.0.0-20200702112145-1c8d4c9ef775
|
||||||
github.com/containerd/console v1.0.0
|
github.com/containerd/console v1.0.0
|
||||||
github.com/coreos/go-systemd/v22 v22.0.0
|
github.com/coreos/go-systemd/v22 v22.1.0
|
||||||
github.com/cyphar/filepath-securejoin v0.2.2
|
github.com/cyphar/filepath-securejoin v0.2.2
|
||||||
github.com/docker/go-units v0.4.0
|
github.com/docker/go-units v0.4.0
|
||||||
github.com/godbus/dbus/v5 v5.0.3
|
github.com/godbus/dbus/v5 v5.0.3
|
||||||
github.com/golang/protobuf v1.3.5
|
github.com/golang/protobuf v1.4.2
|
||||||
github.com/moby/sys/mountinfo v0.1.3
|
github.com/moby/sys/mountinfo v0.1.3
|
||||||
github.com/mrunalp/fileutils v0.0.0-20171103030105-7d4729fb3618
|
github.com/mrunalp/fileutils v0.0.0-20200520151820-abd8a0e76976
|
||||||
github.com/opencontainers/runtime-spec v1.0.3-0.20200520003142-237cc4f519e2
|
github.com/opencontainers/runtime-spec v1.0.3-0.20200728170252-4d89ac9fbff6
|
||||||
github.com/opencontainers/selinux v1.5.1
|
github.com/opencontainers/selinux v1.6.0
|
||||||
github.com/pkg/errors v0.9.1
|
github.com/pkg/errors v0.9.1
|
||||||
github.com/seccomp/libseccomp-golang v0.9.1
|
github.com/seccomp/libseccomp-golang v0.9.1
|
||||||
github.com/sirupsen/logrus v1.6.0
|
github.com/sirupsen/logrus v1.6.0
|
||||||
@ -22,5 +22,5 @@ require (
|
|||||||
// NOTE: urfave/cli must be <= v1.22.1 due to a regression: https://github.com/urfave/cli/issues/1092
|
// NOTE: urfave/cli must be <= v1.22.1 due to a regression: https://github.com/urfave/cli/issues/1092
|
||||||
github.com/urfave/cli v1.22.1
|
github.com/urfave/cli v1.22.1
|
||||||
github.com/vishvananda/netlink v1.1.0
|
github.com/vishvananda/netlink v1.1.0
|
||||||
golang.org/x/sys v0.0.0-20200327173247-9dae0f8f5775
|
golang.org/x/sys v0.0.0-20200728102440-3e129f6d46b1
|
||||||
)
|
)
|
||||||
|
9
vendor/github.com/opencontainers/runc/libcontainer/configs/config.go
generated
vendored
9
vendor/github.com/opencontainers/runc/libcontainer/configs/config.go
generated
vendored
@ -239,15 +239,6 @@ const (
|
|||||||
Poststop = "poststop"
|
Poststop = "poststop"
|
||||||
)
|
)
|
||||||
|
|
||||||
// TODO move this to runtime-spec
|
|
||||||
// See: https://github.com/opencontainers/runtime-spec/pull/1046
|
|
||||||
const (
|
|
||||||
Creating = "creating"
|
|
||||||
Created = "created"
|
|
||||||
Running = "running"
|
|
||||||
Stopped = "stopped"
|
|
||||||
)
|
|
||||||
|
|
||||||
type Capabilities struct {
|
type Capabilities struct {
|
||||||
// Bounding is the set of capabilities checked by the kernel.
|
// Bounding is the set of capabilities checked by the kernel.
|
||||||
Bounding []string
|
Bounding []string
|
||||||
|
3
vendor/github.com/opencontainers/runtime-spec/specs-go/config.go
generated
vendored
3
vendor/github.com/opencontainers/runtime-spec/specs-go/config.go
generated
vendored
@ -90,7 +90,7 @@ type User struct {
|
|||||||
// GID is the group id.
|
// GID is the group id.
|
||||||
GID uint32 `json:"gid" platform:"linux,solaris"`
|
GID uint32 `json:"gid" platform:"linux,solaris"`
|
||||||
// Umask is the umask for the init process.
|
// Umask is the umask for the init process.
|
||||||
Umask uint32 `json:"umask,omitempty" platform:"linux,solaris"`
|
Umask *uint32 `json:"umask,omitempty" platform:"linux,solaris"`
|
||||||
// AdditionalGids are additional group ids set for the container's process.
|
// AdditionalGids are additional group ids set for the container's process.
|
||||||
AdditionalGids []uint32 `json:"additionalGids,omitempty" platform:"linux,solaris"`
|
AdditionalGids []uint32 `json:"additionalGids,omitempty" platform:"linux,solaris"`
|
||||||
// Username is the user name.
|
// Username is the user name.
|
||||||
@ -636,6 +636,7 @@ type LinuxSeccompAction string
|
|||||||
// Define actions for Seccomp rules
|
// Define actions for Seccomp rules
|
||||||
const (
|
const (
|
||||||
ActKill LinuxSeccompAction = "SCMP_ACT_KILL"
|
ActKill LinuxSeccompAction = "SCMP_ACT_KILL"
|
||||||
|
ActKillProcess LinuxSeccompAction = "SCMP_ACT_KILL_PROCESS"
|
||||||
ActTrap LinuxSeccompAction = "SCMP_ACT_TRAP"
|
ActTrap LinuxSeccompAction = "SCMP_ACT_TRAP"
|
||||||
ActErrno LinuxSeccompAction = "SCMP_ACT_ERRNO"
|
ActErrno LinuxSeccompAction = "SCMP_ACT_ERRNO"
|
||||||
ActTrace LinuxSeccompAction = "SCMP_ACT_TRACE"
|
ActTrace LinuxSeccompAction = "SCMP_ACT_TRACE"
|
||||||
|
20
vendor/github.com/opencontainers/runtime-spec/specs-go/state.go
generated
vendored
20
vendor/github.com/opencontainers/runtime-spec/specs-go/state.go
generated
vendored
@ -1,5 +1,23 @@
|
|||||||
package specs
|
package specs
|
||||||
|
|
||||||
|
// ContainerState represents the state of a container.
|
||||||
|
type ContainerState string
|
||||||
|
|
||||||
|
const (
|
||||||
|
// StateCreating indicates that the container is being created
|
||||||
|
StateCreating ContainerState = "creating"
|
||||||
|
|
||||||
|
// StateCreated indicates that the runtime has finished the create operation
|
||||||
|
StateCreated ContainerState = "created"
|
||||||
|
|
||||||
|
// StateRunning indicates that the container process has executed the
|
||||||
|
// user-specified program but has not exited
|
||||||
|
StateRunning ContainerState = "running"
|
||||||
|
|
||||||
|
// StateStopped indicates that the container process has exited
|
||||||
|
StateStopped ContainerState = "stopped"
|
||||||
|
)
|
||||||
|
|
||||||
// State holds information about the runtime state of the container.
|
// State holds information about the runtime state of the container.
|
||||||
type State struct {
|
type State struct {
|
||||||
// Version is the version of the specification that is supported.
|
// Version is the version of the specification that is supported.
|
||||||
@ -7,7 +25,7 @@ type State struct {
|
|||||||
// ID is the container ID
|
// ID is the container ID
|
||||||
ID string `json:"id"`
|
ID string `json:"id"`
|
||||||
// Status is the runtime status of the container.
|
// Status is the runtime status of the container.
|
||||||
Status string `json:"status"`
|
Status ContainerState `json:"status"`
|
||||||
// Pid is the process ID for the container process.
|
// Pid is the process ID for the container process.
|
||||||
Pid int `json:"pid,omitempty"`
|
Pid int `json:"pid,omitempty"`
|
||||||
// Bundle is the path to the container's bundle directory.
|
// Bundle is the path to the container's bundle directory.
|
||||||
|
Loading…
Reference in New Issue
Block a user