David Son
David Son
Signed-off-by: David Son # Reason for This PR Fixes #3058 ## Description of Changes `[Author TODO: add description of changes.]` - [ ] This functionality can be added in [`rust-vmm`][1]....
# Describe the bug Using `tools/devtool build_rootfs` multiple times concurrently results in the rootfs failing to mount. ## To Reproduce 1. Create a loop that runs many times concurrently (I...
Fixes #1440 This change was done due to the general recommendation to use SIGTERM instead of SIGINT. This change will make SIGINT effectively behave the same as SIGTERM, but will...
When calling SIGINT on the daemon, it cannot be loaded into a working state without some extra effort. This is because SIGINT [triggers the cleanup flag](https://github.com/containerd/stargz-snapshotter/blob/2713db58dc69454d4ed5cffdd277560e5c52aa25/cmd/containerd-stargz-grpc/main.go#L270), which [wipes the content...
In the image pull workflow, the function headers are getting far too large. (imgutil.EnsureImage had 13 required arguments as of the time of this PR.) This change consolidates many of...
### Related Issue Fixes #63 ### Proposed Changes Includes notable changes to handling sparse files. Full changelog can be found here: https://github.com/awslabs/soci-snapshotter/releases/tag/v0.4.1 Tested it with `taskcat test run -r us-west-2...
### What is the problem you're trying to solve Looking in pkg/ocihook, we don't seem to have to have any tests to ensure these OCI hooks are working as intended....
Fixes #244. More context in the issue. Filesystems without xattr support do not have any xattrs to copy. The syscall for this will return ENOTSUP to indicate this, but continuity...
The [CopyDir()](https://github.com/containerd/continuity/blob/50fa7de4fc5d1529fed1c4d6e3efad231bf5a232/fs/copy.go#L74) call will fail on filesystems that do not support extended attributes. This is because the function will eventually call [sysx.LListxattr()](https://github.com/containerd/continuity/blob/50fa7de4fc5d1529fed1c4d6e3efad231bf5a232/fs/copy_linux.go#L65), which will return ENOTSUP. This shouldn't be a...
Issue #, if available: *Description of changes:* Add rudimentary e2e testing to our e2e CI. This is by no means comprehensive, and this is also using the older coverage formats...