Replace containerkit references with containerd

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
This commit is contained in:
Brian Goff 2016-12-14 09:34:25 -05:00
parent 25b14eba2f
commit 273492bc6d
3 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ The table specifies whether or not the feature/component is in or out of scope.
| cow filesystem | Built in functionality for overlay, aufs, and other copy on write filesystems for containers | in | |
| distribution | Having the ability to push and pull images as well as operations on images as a first class api object | in | containerd will fully support the management and retrieval of images |
| low-level networking drivers | Providing network functionality to containers along with configuring their network namespaces | in | Network support will be added via interface and network namespace operations, not service discovery and service abstractions. |
| build | Building images as a first class API | out | Build is a higher level tooling feature and can be implemented in many different ways on top of containerkit |
| build | Building images as a first class API | out | Build is a higher level tooling feature and can be implemented in many different ways on top of containerd |
| volumes | Volume management for external data | out | The api supports mounts, binds, etc where all volumes type systems can be built on top of. |
| logging | Persisting container logs | out | Logging can be build on top of containerd because the containers STDIO will be provided to the clients and they can persist any way they see fit.,There is no io copying of container STDIO in containerd. |

View File

@ -50,7 +50,7 @@ The runtime layer is responsible for the creation of containers and their manage
### Storage
**Documents:** https://github.com/docker/containerkit/blob/master/design/snapshots.md
**Documents:** https://github.com/docker/containerd/blob/master/design/snapshots.md
The current graph drivers were built when we only had overlay filesystems like aufs.
We forced the model to be designed around overlay filesystems and this introduced a lot of complexity for snapshotting graph drivers like btrfs and devicemapper thin-p.

View File

@ -7,7 +7,7 @@ import (
"syscall"
)
// Mount is the lingua franca of the containerkit. A mount represents a
// Mount is the lingua franca of containerd. A mount represents a
// serialized mount syscall. Components either emit or consume mounts.
type Mount struct {
// Type specifies the host-specific of the mount.