summaryrefslogtreecommitdiffhomepage
path: root/pkg/v2/service.go
AgeCommit message (Collapse)Author
2020-03-03Gather and return real statistics in Stats() (#50)Andrew Dunham @ Stripe
2019-10-09Support volume annotations (#40)Lantao Liu
* Add volume annotation support Signed-off-by: Lantao Liu <lantaol@google.com> * Add unit test. Signed-off-by: Lantao Liu <lantaol@google.com>
2019-05-29Create rootfs directory in shim. (#30)Lantao Liu
Signed-off-by: Lantao Liu <lantaol@google.com>
2019-04-08fix: apply runtime path from runcOption to opts.BinaryName (#22)jerryzhuang
enable to pass a custom runtime path to gvisor-containerd-shim Signed-off-by: zhuangqh <zhuangqhc@gmail.com>
2019-03-29Support task creation options passed by ContainerD 1.2.4 (#20)jmillikin-stripe
When ContainerD v1.2.4 creates a task, it may pass a *runctypes.CreateOptions in the request options field. This currently causes the gvisor-containerd-shim to reject the request. This PR allows the shim to handle requests with creation options set, and also slightly improves the error message so future failures of this kind are easier to localize to the shim. Fixes #19
2019-03-08Put the gvisor user log into sandbox log directory. (#17)Lantao Liu
Signed-off-by: Lantao Liu <lantaol@google.com>
2019-01-29Add containerd shim v2 support. (#13)Lantao Liu
* Update vendors Signed-off-by: Lantao Liu <lantaol@google.com> * Add containerd shim v2 support. Signed-off-by: Lantao Liu <lantaol@google.com> * Add test and doc for containerd-shim-runsc-v1. Signed-off-by: Lantao Liu <lantaol@google.com> * Address comments.