-
Notifications
You must be signed in to change notification settings - Fork 214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[backport] nydusify: fix overlayfs mount options for check #1253
[backport] nydusify: fix overlayfs mount options for check #1253
Conversation
To fix the error when mount OCI v1 image in check subcommand: ``` error: mount options is too long ``` The mount options has 4k buffer size limitation, we will encounter the issue in a huge images with mass layers. We need to shorten the length of lowerdir paths in overlayfs option, change `sha256:xxx` to `layer-N` to alleviate the issue. Signed-off-by: Yan Song <imeoer@linux.alibaba.com>
@imeoer , a new test job has been submitted. Please wait in patience. The test job url: https://tone.openanolis.cn/ws/nrh4nnio/test_result/70122 |
Remove temporarily generated directories to save disk space after `nydusify check` command, and prevent file conflict between multiple `nydusify check` operations. Signed-off-by: Yan Song <imeoer@linux.alibaba.com>
@imeoer , the code has been updated, so a new test job has been submitted. Please wait in patience. The test job url: https://tone.openanolis.cn/ws/nrh4nnio/test_result/70123 |
@imeoer , the code has been updated, so a new test job has been submitted. Please wait in patience. The test job url: https://tone.openanolis.cn/ws/nrh4nnio/test_result/70141 |
3a07728
to
c9e9356
Compare
@imeoer , the code has been updated, so a new test job has been submitted. Please wait in patience. The test job url: https://tone.openanolis.cn/ws/nrh4nnio/test_result/70143 |
c9e9356
to
29a46c9
Compare
@imeoer , the code has been updated, so a new test job has been submitted. Please wait in patience. The test job url: https://tone.openanolis.cn/ws/nrh4nnio/test_result/70147 |
29a46c9
to
4c591c1
Compare
@imeoer , the code has been updated, so a new test job has been submitted. Please wait in patience. The test job url: https://tone.openanolis.cn/ws/nrh4nnio/test_result/70187 |
cd61f40
to
1589db2
Compare
@imeoer , the code has been updated, so a new test job has been submitted. Please wait in patience. The test job url: https://tone.openanolis.cn/ws/nrh4nnio/test_result/70206 |
Remove the useless registry auth test. Signed-off-by: Yan Song <imeoer@linux.alibaba.com>
1589db2
to
d2b37fd
Compare
@imeoer , the code has been updated, so a new test job has been submitted. Please wait in patience. The test job url: https://tone.openanolis.cn/ws/nrh4nnio/test_result/70207 |
Fix CVE warnings about openssl and h2. Signed-off-by: Jiang Liu <gerry@linux.alibaba.com>
@imeoer , the code has been updated, so a new test job has been submitted. Please wait in patience. The test job url: https://tone.openanolis.cn/ws/nrh4nnio/test_result/70209 |
To fix the error when mount OCI v1 image in check subcommand:
The mount options has 4k buffer size limitation, we will encounter the issue in a huge images with mass layers.
We need to shorten the length of lowerdir paths in overlayfs option, change
sha256:xxx
tolayer-N
to alleviate the issue.