-
Notifications
You must be signed in to change notification settings - Fork 39.9k
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
disable aufs module #103831
disable aufs module #103831
Conversation
@lizhuqi: This issue is currently awaiting triage. If a SIG or subproject determines this is a relevant issue, they will accept it by applying the The Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
Hi @lizhuqi. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
/ok-to-test |
/test pull-kubernetes-e2e-gce-100-performance |
See some error in containerd log: Need to check why performance test tries to load io.containerd.snapshotter.v1.aufs containrd snapshotter should use overlay instead of aufs. |
The test was testing AUFS Snapshotter for containerd. I think we can enable the aufs module in the test. |
Confirmed that overlayfs is the default snapshotter for containerd |
just compared the log with a successful run. This error also shows in the successful run. So failed to load io.containerd.snapshotter.v1 is okay. I think maybe I shall check the module is available or not before I tried to disable it. Will add a check and try again. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: cheftako, lizhuqi The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/priority important-soon |
aufs seems to be a common cause of flaky tests. |
Do we need to cherry-pick this PR into |
…831-upstream-release-1.20 Automated cherry pick of #103831: disable aufs module
…831-upstream-release-1.21 Automated cherry pick of #103831: disable aufs module
…831-upstream-release-1.22 Automated cherry pick of #103831: disable aufs module
Yes. #103926 |
AUFSUmountHung kernel error slows down the node and caused timeout for other processes. Docker now prefers overlay2 to aufs and containerd prefers overlay so it is safe to disable AUFS. Replicate of kubernetes#103831 Change-Id: I1b5dc48c50cb0553308e21f3c92e00386f814132 Bug: 193674321
… used by Docker AUFSUmountHung kernel error slows down the node and caused timeout for other processes. Docker now prefers overlay2 to aufs and containerd prefers overlay so it is safe to disable AUFS. Replicate of kubernetes#103831 Change-Id: I1b5dc48c50cb0553308e21f3c92e00386f814132 Bug: 193674321
… used by Docker AUFSUmountHung kernel error slows down the node and caused timeout for other processes. Docker now prefers overlay2 to aufs and containerd prefers overlay so it is safe to disable AUFS. Replicate of kubernetes#103831 Change-Id: I1b5dc48c50cb0553308e21f3c92e00386f814132 Bug: 193674321
… used by Docker AUFSUmountHung kernel error slows down the node and caused timeout for other processes. Docker now prefers overlay2 to aufs and containerd prefers overlay so it is safe to disable AUFS. Replicate of kubernetes#103831 Change-Id: I1b5dc48c50cb0553308e21f3c92e00386f814132 Bug: 193674321
… used by Docker AUFSUmountHung kernel error slows down the node and caused timeout for other processes. Docker now prefers overlay2 to aufs and containerd prefers overlay so it is safe to disable AUFS. Replicate of kubernetes#103831 Change-Id: I1b5dc48c50cb0553308e21f3c92e00386f814132 Bug: 193674321
What type of PR is this?
/kind bug
What this PR does / why we need it:
This PR is to disable AUFS module which is no longer used by docker.
AUFSUmountHung kernel error slows down the node and caused timeout for other processes.
We've confirmed that docker is using overlay2 and containerd is using overlay so it is safe to disable AUFS.
Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer:
Does this PR introduce a user-facing change?
None
Additional documentation e.g., KEPs (Kubernetes Enhancement Proposals), usage docs, etc.: