-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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
Bump cilium to 1.10.3 #12141
Bump cilium to 1.10.3 #12141
Conversation
/test ? |
@olemarkus: The following commands are available to trigger required jobs:
Use
In response to this:
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. |
/test pull-kops-e2e-cni-cilium |
0f7cb52
to
133eb1f
Compare
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: johngmyers 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 |
- hostPath: | ||
path: /sys/fs/cgroup/unified | ||
type: DirectoryOrCreate | ||
name: cilium-cgroup |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@olemarkus this change caused all cilium + rhel8 jobs to fail
https://testgrid.k8s.io/kops-grid#kops-grid-cilium-rhel8-k22-containerd
kubelet logs report:
E0916 00:19:04.290207 18754 nestedpendingoperations.go:301] Operation for "{volumeName:kubernetes.io/host-path/23431797-5c17-4404-b61b-33d2e8ec3d54-cilium-cgroup podName:23431797-5c17-4404-b61b-33d2e8ec3d54 nodeName:}" failed. No retries permitted until 2021-09-16 00:19:36.290185341 +0000 UTC m=+151.386939478 (durationBeforeRetry 32s). Error: MountVolume.SetUp failed for volume "cilium-cgroup" (UniqueName: "kubernetes.io/host-path/23431797-5c17-4404-b61b-33d2e8ec3d54-cilium-cgroup") pod "cilium-8rdpr" (UID: "23431797-5c17-4404-b61b-33d2e8ec3d54") : mkdir /sys/fs/cgroup/unified: read-only file system
I dont see any reference to /sys/fs/cgroup/unified in the cilium repo, do you know where this value came from? I'm debating if we want to try to fix this or if we just stop testing cilium + rhel8.
/cc @hakman
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cilium's approach to this is to mount cgroup2 on /sys/fs/cilium-cgroup or something like that, and use that.
But "all modern distros" mount cgroup2 /sys/fs/cgroup, so I simplified things by just assuming it exists.
I overestimated the modernness of redhat and AL2 though.
We could mount cgroup2 explicitly somewhere else as well, like we used to with bpffs. Or we could drop support for not-that-modern-distros.
No description provided.