Containerd - v1.2.0


Welcome to the v1.2.0 release of containerd!

The third major release of containerd brings both a mix of boring and
exciting changes. While fixing many bugs and continuing support for the
containerd 1.0 API, new APIs and interfaces have been added to allow
containerd to be more extensible and cover more use cases.

New V2 Runtime

A new v2 runtime has been added with a stable gRPC interface for managing
containers through external shims.

This allows runtime authors to easily integrate with containerd over a stable
API.

Various runtimes can be selected on a per container basis using the WithRuntime opt
or to test via ctr ctr run --runtime io.containerd.runc.v1.

Documentation

Updated CRI Plugin

Containerd 1.2 is validated against Kubernetes v1.11 and v1.12, but it is also compatible with Kubernetes v1.10.

To use containerd 1.2 with Kubernetes v1.10, be sure to run the stream server on an address accessible to the apiserver. A simple way is to set stream_server_address="" in the [plugins.cri] section of containerd.toml, so that cri plugin will automatically select a routable node address.

Kubernetes Runtime Class

Kubernetes Runtime Class introduced in Kubernetes 1.12 is supported.

Users can: * Configure alternative runtime handlers with the config option plugins.cri.containerd.runtimes.runtime_handler_name, e.g. plugins.cri.containerd.runtimes.kata. (config.md) * Use the alternative runtime handler in Kubernetes by creating RuntimeClass for the runtime handler, and specifying RuntimeClassName in the pod spec. (doc)

The plugins.cri.containerd.untrusted_workload_runtime config option and io.kubernetes.cri.untrusted-workload pod annotation are still functional, but start being deprecated. It is recommended to migrate to the RuntimeClass api.

Other Features

  • Supported ProcMount option introduced in Kubernetes 1.12.
  • Added a new config option plugins.cri.registry.auths for user to config default credentials for specific registries. (doc)
  • Added a new config option plugins.cri.x509_key_pair_streaming for user to config a valid certificate for the stream server. (config.md)
  • Added a runtime options field for shim v2 runtime. Use the options field to config runtime specific options, e.g. NoPivotRoot and SystemdCgroup for runtime type io.containerd.runc.v1. (See config.md)

Notable Changes

  • cri plugin can see images pulled/imported into containerd by ctr images pull and ctr images import.
  • CNI config is now dynamically reloaded when changed.
  • IPv4 address is guaranteed to be selected, when there are both IPv4 and IPv6 addresses for a pod.
  • Privileged untrusted workload is allowed, the workload will get privilege inside the sandbox.
  • cri plugin stream server serves on http://localhost:0 by default. This is to work with the kubelet streaming proxy introduced in Kubernetes 1.11.
  • Fixed an issue that a container can't be stopped when container processes are accidentally moved out of the container cgroups.
  • cluster/health-monitor.sh in the release tarball will be deprecated next release. Please use Kubernetes health-monitor.sh instead.

New Proxy Plugins

A new proxy plugin configuration has been added to allow external snapshotters
be connected to containerd using gRPC.

Documentation

Managed /opt directory

A new Install method on the containerd client allows users to publish host level
binaries using standard container build tooling and container distribution tooling
to download containerd related binaries on their systems.

This can be used for v2 runtime authors to get their runtime shims on an existing
containerd system. It can also be used to install runc and other related tools.

> ctr content fetch docker.io/crosbymichael/runc:latest
> ctr install docker.io/crosbymichael/runc:latest

Documentation

Garbage Collection

Add support for cleaning up leases and content ingests to garbage collections.

Add expiration label to clean up temporary resources.

Image Importer

The image importer has been updated to support output from docker save. Users
of the ctr tool should take note of the usage change to ctr images import.
We continue to recommend not building tooling on top of the ctr tool.

API Changes

This release features a couple additions to the API. Clients may make use of
these new API features but should be able to handle cases when those features
are not implemented on the server. The Go client handles this automatically.

  • Add ListStream method to containers API. This allows listing a larger
    number of containers without hitting message size limts.
  • Add Sync flag to Delete in leases API. Setting this option will ensure
    a garbage collection completes before the removal call is returned. This can
    be used to guarantee unreferenced objects are removed from disk after a lease.

Other Improvements

Improved multi-arch image support using more precise matching and ranking

Please try out the release binaries and report any issues at
https://github.com/containerd/containerd/issues.

Contributors

  • Michael Crosby
  • Lantao Liu
  • Derek McGowan
  • Phil Estes
  • Justin Terry
  • Akihiro Suda
  • Kir Kolyshkin
  • Abhinandan Prativadi
  • Stephen J Day
  • Kenfe-Mickaël Laventure
  • Evan Hazlett
  • Sebastiaan van Stijn
  • Andrei Vagin
  • Brian Goff
  • Lifubang
  • Wei Fu
  • John Howard
  • Samuel Karp
  • Ace-Tang
  • Darren Stahl
  • Ian Campbell
  • Michael Wan
  • Wei Fu
  • Claudia Beresford
  • JulienBalestra
  • Maksym Pavlenko
  • Mike Brown
  • Xuean Yan
  • Felix Abecassis
  • Gábor Lipták
  • Ivan Markin
  • Jian Liao
  • Jie Zhang
  • Luc Perkins
  • Mathieu Champlon
  • Tim Allclair
  • Tom Godkin
  • Tõnis Tiigi
  • Vincent Demeester
  • Xiaodong Zhang
  • Yanqiang Miao
  • Yongxin Li
  • Yu-Ju Hong
  • Alban Crequy
  • Aleksa Sarai
  • Alexander Gerasiov
  • Andrew Osheroff
  • Arnaud Rebillout
  • Bin Du
  • Bingshen Wang
  • Danail Branekov
  • Daniel, Dao Quang Minh
  • Dave Henderson
  • Eric Ernst
  • Filipe Brandenburger
  • Frank Yang
  • Harshal Patil
  • Jiri Appl
  • Justin Cormack
  • Kevin Xu
  • Lihua Tang
  • Lu Jingxiao
  • Madhan Raj Mookkandy
  • Michael Fraenkel
  • Nikos Anastopoulos
  • Oliver Stenbom
  • Parav Pandit
  • Ricardo Aravena
  • Rolf Neugebauer
  • Rui Cao
  • Starnop
  • Sudeesh John
  • Tobias Klauser
  • Xiaoxi He
  • Luc Perkins

Changes

Changes from containerd/aufs

Changes from containerd/cgroups

  • 5e61083 Merge pull request #50 from jingxiaolu/master
  • 0d1587c Add interface AddTask to control groups. So that we can set tasks when we need.
  • 07683a6 Merge pull request #45 from anastop/master
  • 15ef4c3 Add Update method for the cpuset controller
  • c755602 Merge pull request #41 from estesp/update-travis-go
  • 0a357bb Update Go versions for travis
  • 5539584 Fix incorrect use of OCI runtime specs-go cgroup dev types
  • bf7d89f Merge pull request #40 from containerd/license
  • f1d9380 Add license to files
  • 78a98a6 Merge pull request #39 from paravmellanox/master
  • ccd26c4 Add support for rdma cgroup

Changes from containerd/console

  • c12b1e7 Merge pull request #29 from crosbymichael/win
  • 7a61819 Update read write on windows console
  • 8894ab3 Revert "Fix reading from and writing to console on windows"
  • b3d113c Use stdout for windows console
  • 4d8a41f Merge pull request #27 from gerasiov/master
  • 5d1b48d console_linux: Fix race: lock Cond before Signal.
  • 9a57d21 Merge pull request #28 from crosbymichael/travis
  • 058dd74 Update travis file for 1.10
  • 9290d21 Merge pull request #25 from mat007/support-read-write-windows
  • a7ba593 Fix reading from and writing to console on windows
  • 6fe6f36 Fix some typos in comments

Changes from containerd/continuity

  • bd77b46 Merge pull request #136 from AkihiroSuda/sync-testutil-2
  • 4fd7ce4 split testutil/loopback_linux.go to another pkg
  • 98c57b8 Merge pull request #130 from estesp/travis-project
  • 7f53d41 Merge pull request #134 from dmcgowan/remove-unnecessary-fs-root-check
  • 18a1c09 Remove unreachable block in fs path cleanup
  • 508d86a Merge pull request #123 from kolyshkin/path-error
  • f192d1b Add common project validation scripts
  • aae7d98 Merge pull request #127 from AkihiroSuda/sync-testutil
  • f04dbc0 Merge pull request #133 from kolyshkin/context
  • 508ef95 travis CI: rm go 1.8
  • 3448067 Switch from x/net/context to context
  • c2ac4ec Merge pull request #129 from estesp/fileheaders
  • cc3f87e Merge pull request #131 from estesp/fixup-vendor
  • d1610d5 Fixup vendor/ with latest run of vndr
  • f9cc5ee Add fileheaders with ltag tool
  • f768f56 testutil: sync with containerd
  • f44b615 Merge pull request #124 from HusterWan/zr/expose-func
  • 4469d34 feature: expose atomicWriterFile function as AtomicWriteFile
  • f5b895a driver/{Mknod,Mkfifo,Lchmod}: return PathError
  • c7c5070 Merge pull request #121 from kolyshkin/xattr
  • a408b7b sysx/xattr: unify implementation
  • 363bb7e vendor: bump golang.org/x/sys to 77b0e4315053
  • 0e47603 sysx: add README
  • 0377f7d Merge pull request #120 from kolyshkin/lchmod-linux-go111
  • 6d0b394 context.Apply: no need to skip chmod on symlinks
  • 94af800 Lchmod(): fix for Linux/Go 1.11
  • 9ab0ec6 Lchmod(): simplify and optimize
  • 2b69c16 sysx.Fchmodat(): remove
  • d2ce1bc sysx/xattr_darwin.go: rm duplicate Fchmodat def
  • 246e490 Merge pull request #111 from cpuguy83/disk_usage_cancellation
  • ab18c4f Merge pull request #115 from cpuguy83/update_travis
  • d3c2351 Merge pull request #113 from darstahl/ResolveRoot
  • a60600a Merge pull request #117 from dmcgowan/fix-create-file-reader-creation
  • 7d784df Fix bug in multiple calls to file applier
  • 2d3749b Merge pull request #116 from dmcgowan/random-file-test
  • a3fa14c Update TestCopyWithLargeFile
  • 7333bda Merge pull request #114 from cpuguy83/fix_copy_file_range_usage
  • afba265 Fix copy_file_range usage for files > 2GB
  • 7f1a8b2 Make sure travis tests on latest go version.
  • 5633c24 Stop resolving symlink in containWithRoot
  • 7a71e24 Fix vet failure
  • 8100e75 Resolve context root to follow symlinks as root directories
  • c6cef34 Merge pull request #106 from cpuguy83/export_copy_file
  • a88ec15 Merge pull request #108 from tklauser/xattr-sys-unix
  • 6cde904 Support cancellation via context in DiskUsage.
  • d59f454 Export copyFile
  • 6268e28 sysx: use xattr functions from x/sys/unix

Changes from containerd/cri

  • f9137149 Merge pull request #951 from Random-Liu/cherrypick-#949-release-1.2
  • 02501807 Add integration test.
  • bb6d2726 Update go-cni to 40bcf8ec8acd7372be1d77031d585d5d8e561c90.
  • 986f7540 Teardown pod network even if the network namespace is closed
  • 4f939fcb Merge pull request #947 from Random-Liu/cherrypick-#943-release-1.2
  • 49d77ddd Support runtime specific configurations.
  • a97094d4 Merge pull request #945 from Random-Liu/cherrypick-#944-release-1.2
  • 2cd14194 Use Authorizer.
  • 5a547640 Update containerd to 15f19d7a67fa322e6de0ef4c6a1bf9da0f056554.
  • 8506fe83 Merge pull request #939 from Random-Liu/cherrypick-#938-release-1.2
  • f6db6132 Update test based on new CRI.
  • 97fcaf90 Update kubernetes to v1.12.0.
  • 33624c19 Merge pull request #933 from Random-Liu/cherrypick-#926-release-1.2
  • 84a720ee Add integration test
  • 18ecffc9 Manage unmanaged images in k8s.io namespace
  • e5b175d6 Merge pull request #931 from Random-Liu/cherrypick-#924-release-1.2
  • dd67e74e Update containerd to f88d3e5d6dfe9b7d7941ac5241649ad8240b9282.
  • bf62320e Add timeout for container/sandbox recover and event monitor.
  • 79645ed3 Merge pull request #929 from Random-Liu/cherrypick-#928-release-1.2
  • f888b2f4 Update critools version.
  • 9f39e328 Merge pull request #919 from Random-Liu/update-cri-tools
  • 3de8c8bf Update cri-tools to 98eea54af789ae13edce79cba101fb9ac8e7b241.
  • 31a960fb Merge pull request #918 from Random-Liu/show-runtime-handler-in-sandbox-info
  • 46b8f429 Merge pull request #912 from Random-Liu/add-hostname-env-integration-test
  • 4b45e16a Show runtime handler in sandbox debug info.
  • c7c68993 Add hostname env integration test.
  • e402ae2f Merge pull request #914 from Random-Liu/fix-addition-gids
  • 51ee6ea6 Add integration test
  • ca3b806b Fix addition group ids.
  • f267f217 Update containerd to 66b984ee33b872990439328036bc58339bc1ef51
  • 3e5eb0c7 Merge pull request #911 from Random-Liu/sctp-support
  • f540c2a7 Skip sctp protocol hostport mapping.
  • 04703092 Merge pull request #908 from Random-Liu/update-kubernetes
  • a2655acd Update kubernetes to v1.12.0-beta.1.
  • fe0cd367 Merge pull request #865 from Random-Liu/cache-image-reference
  • ed68cfd5 Merge pull request #901 from Random-Liu/fix-hostname-env
  • 953d67d2 Create image reference cache.
  • f08a90ff Fix hostname env.
  • cfdf8724 Merge pull request #891 from tallclair/runtimehandler
  • 9cd964f6 Merge pull request #898 from Random-Liu/revert-#895
  • eb3d3cfc Revert "Add HOSTNAME to env by default for pod containers"
  • db8500d1 Merge pull request #892 from Random-Liu/fix-volume-mount-order
  • e7189a25 Add RuntimeHandler support
  • 67c0b3e5 Merge pull request #894 from Random-Liu/support-masked-readonly-paths
  • 1e471b1a Merge pull request #895 from estesp/add-hostname-env
  • 4c3e195d Add HOSTNAME to env by default for pod containers
  • 3e4cec87 Add MaskedPaths and ReadonlyPaths support.
  • 4a65865e Update kubernetes to 6b7c39a4f8d4c38e8724550cc3e6e41b7ac7a276
  • 063f8158 Sort volume mount.
  • 89b5b3cc Vendor latest CRI API
  • 49877571 Merge pull request #886 from DataDog/JulienBalestra/tls-stream
  • dffd0dfa streaming: tls conf validation to func with tests
  • 9acd9531 Merge pull request #890 from Random-Liu/update-go-cni
  • 3da8bedb Update go-cni to 6d7b509a054a3cb1c35ed1865d4fde2f0cb547cd.
  • 859003a9 stream: struct for x509 key pair, update the docs, error management
  • b82b5242 stream: can use user certificates
  • df67dfff Merge pull request #885 from Random-Liu/enhance-container-stop
  • bca304ff Fix an issue that container/sandbox can't be stopped.
  • a3af7393 Merge pull request #880 from thaJeztah/align_dependencies_to_tags
  • 1d7f5f43 Use tagged versions for dependencies where possible
  • 58eb0455 Merge pull request #873 from miaoyq/verify-selinux-level
  • a87bda08 update selinux to b6fa367
  • 415727cd verify selinux level format
  • 7d483b2f Merge pull request #874 from Random-Liu/update-containerd
  • 6379fd03 Update containerd to b9eeaa1ce83dd9970605ddbd0b35d4d3fa5f87bd.
  • c9d61515 Merge pull request #869 from Random-Liu/support-netd
  • d1dcacf9 Support netd in GCE bootstrap.
  • 1263024a Merge pull request #864 from Random-Liu/unpack-during-import
  • e1a37e87 Unpack image during import.
  • a0cfc8c1 Merge pull request #857 from egernst/untrusted-priv
  • 9a01272d sandbox: separate host accessing workload and privileged
  • 2be13a8a Merge pull request #858 from Random-Liu/stream-serve-on-local
  • b3d6f163 Serve streaming on localhost by default to match k8s 1.11 default.
  • 42a98de2 Merge pull request #851 from yanxuean/support-no-pivot
  • 7065dd81 support no_pivot option for runc
  • 7beac6fc Merge pull request #849 from dmcgowan/remove-stringid
  • 1984e451 Replace stringid with simple rand reader
  • 2eb817c7 Merge pull request #843 from Random-Liu/document-no-overwrite-dir
  • 5637e8be Set 0022 umask for hack/release.sh.
  • 0f3c83b1 Use --no-overwrite-dir in installation doc.
  • 1d0d9b34 Merge pull request #841 from Random-Liu/add-back-missing-vendor
  • fb60d18f Add missing vendor back.
  • ca325665 Merge pull request #838 from Random-Liu/add-auth-config
  • 1d9a754f Update containerd to b382b6fe0bdbf7604c0a4f5c2089c0b159ad58b2.
  • e4ad6809 Remove pkg/containerd/resolver package.
  • 952e53bf Add registry auth config, and use docker resolver in containerd.
  • 5ad95b2d Merge pull request #833 from Random-Liu/update-containerd-k8s
  • 88c5165b Update containerd and k8s.
  • bc99f7a7 Merge pull request #832 from Random-Liu/remove-crictl-on-gce
  • f5803748 Remove crictl on GCE for all cases.
  • c68b6051 Merge pull request #831 from Random-Liu/fix-link
  • fd71c9f0 Fix another link.
  • 47b8d30b Merge pull request #828 from yujuhong/fix-gce-link
  • 0e42438e Merge pull request #829 from Random-Liu/local-stream-server
  • f6ab733f Set stream server to serve on localhost on GCE.
  • e23c0e70 Fix link to GCE getting started guide
  • 4eb4a295 Merge pull request #825 from abhi/cni_config
  • 86097102 vendoring latest go-cni with fixes
  • 263b0b99 Change to keep in sync with latest cni config
  • 07020dbd Merge pull request #820 from filbranden/usercap1
  • 01d77d44 Update github.com/opencontainers/runtime-tools to v0.6.0
  • 441a57aa Merge pull request #821 from Random-Liu/fix-snapshotter-panic
  • 9cb82aae Merge pull request #823 from Random-Liu/update-crictl
  • cfa88fca Merge pull request #824 from Random-Liu/make-max-log-size-configurable
  • b5d053f3 Make max container log line size configurable through cloud init.
  • bdddbed4 Update crictl to v1.11.0.
  • b60e456b Fix snapshotter nil panic.
  • e3d57d24 Merge pull request #761 from Random-Liu/add-log-max-size
  • ad293701 Merge pull request #816 from Random-Liu/fix-double-dev-shm-mount
  • 53f1ab41 Fix double /dev/shm mount.
  • bf551b9c Add integration test.
  • 405f57f8 Add max_container_log_size
  • b39546ce Merge pull request #815 from Random-Liu/support-cmd-for-sandbox-container
  • 46d621e4 Support Cmd for sandbox container.
  • b7aac639 Merge pull request #811 from Random-Liu/fix-volume-ownership
  • 7e0cbbe6 Merge pull request #810 from Random-Liu/revert-#804
  • c5577637 Fix empty volume ownership.
  • c9216531 Revert "Use pod ip instead of localhost in pod netns for portforward."
  • d7abb5b4 Merge pull request #807 from Random-Liu/log-task-exit-event
  • 5a1105c6 Merge pull request #808 from Random-Liu/erase-ambient-caps
  • 96cfccec Merge pull request #804 from Random-Liu/use-pod-ip-for-portforward
  • dd886bc2 Use pod ip instead of localhost in pod netns for portforward.
  • b367f300 Erase ambient capabilities.
  • de84f9c0 Merge pull request #806 from Random-Liu/update-kubernetes
  • e4e25854 Log task exit event.
  • 2b48f873 Update kubernetes to v1.11.0-beta.2
  • dfae95ec Merge pull request #802 from Random-Liu/remove-unused-files
  • db028fd2 Merge pull request #803 from Random-Liu/select-ipv4-first
  • 83e6b655 Select ipv4 first if there is one.
  • ccc5f394 Remove unused files.
  • 8bcb9a95 Merge pull request #801 from Random-Liu/fix-ctr-timeout
  • 0faff1c2 Fix ctr cri timeout.
  • ecf8d99d Merge pull request #799 from AkihiroSuda/oci-content-store
  • 09724905 vendor containerd (#2135)
  • 0a5c05bc Merge pull request #776 from Random-Liu/disable-streaming
  • 578b34f1 Merge pull request #794 from Random-Liu/panic-for-cri-start-failure
  • b870ee79 Generate fatal error when cri plugin fail to start.
  • b68fb075 Merge pull request #793 from Random-Liu/port-containerd-fix-#2364
  • 0fae42b9 Port docker resolver fix #2364.
  • 8bb978e3 Merge pull request #785 from ehazlett/containerd-vendor-bump
  • d7d22123 vendor bump
  • 40b60834 Merge pull request #789 from Random-Liu/configurable-containerd-build
  • 1892b30f Make DEPLOY_PATH configurable.
  • 52460ebf Merge pull request #788 from BSWANG/patch-1
  • 7bd86a22 Update cni.template
  • 574f9496 Merge pull request #786 from fuweid/remove_useless_check
  • e28b77c0 Remove useless error-check in createImageReference
  • 24a96426 Merge pull request #784 from cpuguy83/bump_continuity
  • fb6bc66f Bump continuity to fix copy files > 2^32 bytes
  • 450eb09a Merge pull request #782 from Random-Liu/update-containerd
  • 60b0d08a Use containerd.WithPullUnpack.
  • 4f00103c Disable restart plugin on GCE.
  • 80188e25 Update containerd to d1435e6e4dcffd99e0da396ff771b5bbe0d93f5e.
  • a4ff7e99 Merge pull request #781 from Random-Liu/fix-container-runtime-monitor
  • ebed87fa Fix kube-container-runtime-monitor.
  • bafc7943 Merge pull request #758 from Random-Liu/use-crictl-in-kube-up
  • 927d3740 Merge pull request #779 from Random-Liu/logo-fix
  • b4631cf7 Use crictl installed in kube-up.sh
  • 6c7ec48d Another logo fix.
  • 6f43d493 Disable TLS streaming to work with new kubelet streaming proxy.
  • 8566a896 Merge pull request #775 from mikebrow/readme-pub-imgs
  • e10a2492 use public logos for a while vs remote github logos that are not in this repo
  • 9f8e5812 Merge pull request #647 from mikebrow/boiler-support-for-no-year
  • 8d60547e Merge pull request #769 from raravena80/patch-1
  • 67908190 Merge pull request #768 from Random-Liu/upgrade-crictl
  • f79e0171 Minor typo
  • 97634890 Upgrade cri-tools to v1.0.0-beta.1
  • 66388aef Merge pull request #766 from Random-Liu/fix-workingset-memory
  • 5d29598a Fix workingset memory calculation.
  • 7a6369de Merge pull request #763 from Random-Liu/fix-ro-sysfs
  • a5d1332e Explicitly set rw for privileged container.
  • 5f4035ae Merge pull request #754 from kolyshkin/mount
  • daeab40b os.Unmount: do not consult mountinfo, drop flags
  • 6bbbec5a Merge pull request #755 from Random-Liu/always-mount-sysfs-rw
  • 03bac618 Merge pull request #756 from Random-Liu/update-cri-tools
  • 2f370f6f Update cri-tools to fix crictl logs output.
  • 279fa853 Always mount sysfs as rw.
  • 8fec0469 Merge pull request #751 from Random-Liu/fix-official-release
  • e0d70782 Fix tarball ownership and containerd binary path for containerd.
  • 825563b2 Merge pull request #750 from Random-Liu/download-from-official-release
  • e22ebf42 Down containerd binaries from official release.
  • c3574e44 makes copyright year optional

Changes from containerd/go-cni

  • 40bcf8e Merge pull request #32 from Random-Liu/ignore-error-for-empty-path
  • 5ce81a6 Only ignore "no such file or directory" error for empty path
  • cc959f7 Merge pull request #31 from Random-Liu/ignore-not-exit-error
  • a442970 Ignore "no such file or directory" error.
  • 7585e6d Merge pull request #30 from Random-Liu/set-max-network-config
  • 6d7b509 Add WithAllConf, and change WithDefaultConf to only load default.
  • ef9a3f8 Merge pull request #29 from crosbymichael/prefix
  • 6aeaa2d Use network count in ifname index
  • 5882530 Merge pull request #26 from abhi/master
  • 1695039 Minor cleanup with concurrency and locking
  • 47457ea Merge pull request #24 from containerd/cni-opts
  • d6ba409 Same Opt API for Load and New
  • 18e77c5 Merge pull request #23 from abhi/master
  • 83a302e Updating Readme based on new APIs
  • 25573b2 Merge pull request #22 from abhi/badge
  • ca0948e Merge pull request #21 from abhi/travis
  • 9e927d3 Adding build badge
  • e93f297 Updating travis

Changes from containerd/go-runc

  • 5a6d9f3 Fix windows build for io options
  • 90a5d16 Merge pull request #49 from containerd/ioopts
  • b346a17 Add i/o opts for conditional creation
  • cae6416 Merge pull request #48 from containerd/version
  • e32098a Allow empty version results
  • acb7c88 Merge pull request #46 from jterry75/fix_pipe_close
  • f146bed Reorder pipe close to be write/read
  • 808e844 Merge pull request #45 from jterry75/io_windows
  • cc5515f Make console.go +build !windows
  • d4cf276 Break apart NewPipeIO to windows/unix
  • edcf3de Merge pull request #44 from containerd/env
  • 523ee98 Pass env down to runc command
  • 14606eb Merge pull request #43 from AkihiroSuda/rootless
  • 0194529 add support for --rootless
  • 74719bd Merge pull request #42 from Random-Liu/expose-parsePSOutput
  • fdf39b3 Expose parsePSOutput.
  • 301f7c1 Merge pull request #41 from masters-of-cats/master
  • 07e192d Use user-specific temp directory if set
  • f271fa2 Merge pull request #40 from avagin/tty
  • 400dfa3 Add ConsoleSocket to RestoreOpts

Changes from containerd/ttrpc

  • 2a805f7 Merge pull request #29 from containerd/ctxdone
  • 33564d2 Signal server done before closing connections
  • d77f111 Add client side context.Done support
  • 94dde38 Merge pull request #27 from containerd/ctx
  • 01ed7d8 Add context to Serve
  • fa6c681 Merge pull request #25 from containerd/repochange
  • 0690b20 Add apache license to files
  • 4b957e7 Update imports and references for containerd
  • 530a70d Merge pull request #24 from elboulangero/master
  • 87ac4c6 Log with sirupse/logrus to avoid a circular dependency to containerd #6

Changes from containerd/typeurl

  • a93fcdb Merge pull request #5 from estesp/add-license-headers
  • b425f6b Add Apache license headers with ltag
  • dac9cd9 Add go versions to travis
  • 2e95e46 Fix marshal tests with local type

Dependency Changes

Previous release can be found at v1.1.0

  • github.com/Microsoft/go-winio v0.4.5 -> v0.4.11
  • github.com/Microsoft/hcsshim v0.6.7 -> v0.7.12
  • github.com/containerd/aufs a7fbd554da7a9eafbe5a460a421313a9fd18d988 -> ffa39970e26ad01d81f540b21e65f9c1841a5f92
  • github.com/containerd/cgroups fe281dd265766145e943a034aa41086474ea6130 -> 5e610833b72089b37d0e615de9a92dfc043757c2
  • github.com/containerd/console cb7008ab3d8359b78c5f464cb7cf160107ad5925 -> c12b1e7919c14469339a5d38f2f8ed9b64a9de23
  • github.com/containerd/continuity 3e8f2ea4b190484acb976a5b378d373429639a1a -> bd77b46c8352f74eb12c85bdc01f4b90f69d66b4
  • github.com/containerd/cri v1.0.0 -> f913714917d2456d7e65a0be84962b1ce8acb487
  • github.com/containerd/go-cni f2d7272f12d045b16ed924f50e91f9f9cecc55a7 -> 40bcf8ec8acd7372be1d77031d585d5d8e561c90
  • github.com/containerd/go-runc bcb223a061a3dd7de1a89c0b402a60f4dd9bd307 -> 5a6d9f37cfa36b15efba46dc7ea349fa9b7143c3
  • github.com/containerd/ttrpc d4528379866b0ce7e9d71f3eb96f0582fc374577 -> 2a805f71863501300ae1976d29f0454ae003e85a
  • github.com/containerd/typeurl f6943554a7e7e88b3c14aad190bf05932da84788 -> a93fcdb778cd272c6e9b3028b2f42d813e785d40
  • github.com/emicklei/go-restful ff4f55a206334ef123e4f79bbf348980da81ca46 -> v2.2.1
  • github.com/ghodss/yaml 73d445a93680fa1a78ae23a5839bad48f32ba1ee -> v1.0.0
  • github.com/golang/protobuf 1643683e1b54a9e88ad26d98f81400c8c9d9f4f9 -> v1.1.0
  • github.com/json-iterator/go 1.0.4 -> 1.1.5
  • github.com/modern-go/concurrent 1.0.3 new
  • github.com/modern-go/reflect2 1.0.1 new
  • github.com/opencontainers/go-digest 21dfd564fd89c944783d00d069f33e3e7123c448 -> c9281466c8b2f606084ac71339773efd177436e7
  • github.com/opencontainers/runc 69663f0bd4b60df09991c08812a60108003fa340 -> 58592df56734acf62e574865fe40b9e53e967910
  • github.com/opencontainers/runtime-spec v1.0.1 -> eba862dc2470385a233c7507392675cbeadf7353
  • github.com/opencontainers/runtime-tools 6073aff4ac61897f75895123f7e24135204a404d -> v0.6.0
  • github.com/opencontainers/selinux 4a2974bf1ee960774ffd517717f1f45325af0206 -> b6fa367ed7f534f9ba25391cc2d467085dbb445a
  • github.com/tchap/go-patricia 5ad6cdb7538b0097d5598c7e57f0a24072adf7dc -> v2.2.6
  • github.com/xeipuuv/gojsonpointer 4e3ac2762d5f479393488629ee9370b50873b3a6 new
  • github.com/xeipuuv/gojsonreference bd5ef7bd5415a7ac448318e64f11a24cd21e594b new
  • github.com/xeipuuv/gojsonschema 1d523034197ff1f222f6429836dd36a2457a1874 new
  • go.etcd.io/bbolt v1.3.1-etcd.8 new
  • golang.org/x/net 7dcfb8076726a3fdd9353b6b8a1f1b6be6811bd6 -> b3756b4b77d7b13260a0a2ec658753cf48922eac
  • golang.org/x/oauth2 a6bd8cefa1811bd24b86f8902872e4e8225f74c4 new
  • golang.org/x/sys 314a259e304ff91bd6985da2a7149bbf91237993 -> 1b2967e3c290b7c545b3db0deeda16e9be4f98a2
  • google.golang.org/grpc v1.10.1 -> v1.12.0
  • gopkg.in/yaml.v2 53feefa2559fb8dfa8d81baad31be332c97d6c77 -> v2.2.1
  • gotest.tools v2.1.0 new
  • k8s.io/api 7e796de92438aede7cb5d6bcf6c10f4fa65db560 -> kubernetes-1.12.0
  • k8s.io/apimachinery fcb9a12f7875d01f8390b28faedc37dcf2e713b9 -> kubernetes-1.12.0
  • k8s.io/apiserver 4a8377c547bbff4576a35b5b5bf4026d9b5aa763 -> kubernetes-1.12.0
  • k8s.io/client-go b9a0cf870f239c4a4ecfd3feb075a50e7cbe1473 -> kubernetes-1.12.0
  • k8s.io/kubernetes v1.10.0 -> v1.12.0
  • k8s.io/utils 258e2a2fa64568210fbd6267cf1d8fd87c3cb86e -> cd34563cd63c2bd7c6fe88a73c4dcf34ed8a67cb

Details

date
Oct. 25, 2018, 12:05 a.m.
name
containerd 1.2.0
type
Minor
👇
Register or login to:
  • 🔍View and search all Containerd releases.
  • 🛠️Create and share lists to track your tools.
  • 🚨Setup notifications for major, security, feature or patch updates.
  • 🚀Much more coming soon!
Continue with GitHub
Continue with Google
or