-
-
Notifications
You must be signed in to change notification settings - Fork 322
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
Fix Calico install-cni crashloop on Pod restarts #724
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dghubble
changed the title
Fix Calico node crash loop on Pod restart
Fix Calico install-cni crashloop on Pod restarts
May 9, 2020
* Set a consistent MCS level/range for Calico install-cni * Note: Rebooting a node was a workaround, because Kubelet relabels /etc/kubernetes(/cni/net.d) Background: * On SELinux enforcing systems, the Calico CNI install-cni container ran with default SELinux context and a random MCS pair. install-cni places CNI configs by first creating a temporary file and then moving them into place, which means the file MCS categories depend on the containers SELinux context. * calico-node Pod restarts creates a new install-cni container with a different MCS pair that cannot access the earlier written file (it places configs every time), causing the init container to error and calico-node to crash loop * https://github.com/projectcalico/cni-plugin/issues/874 ``` mv: inter-device move failed: '/calico.conf.tmp' to '/host/etc/cni/net.d/10-calico.conflist'; unable to remove target: Permission denied Failed to mv files. This may be caused by selinux configuration on the host, or something else. ``` Note, this isn't a host SELinux configuration issue. Related: * poseidon/terraform-render-bootstrap#186
dghubble
force-pushed
the
calico-install-cni-selinux
branch
from
May 9, 2020 23:02
0fcddbb
to
358854e
Compare
dghubble
added a commit
that referenced
this pull request
Nov 25, 2020
* Enable Calico MTU auto-detection * Remove [workaround](#724) to Calico cni-plugin [issue](https://github.com/projectcalico/cni-plugin/issues/874) Rel: poseidon/terraform-render-bootstrap#230
dghubble
added a commit
that referenced
this pull request
Nov 25, 2020
* Enable Calico MTU auto-detection * Remove [workaround](#724) to Calico cni-plugin [issue](https://github.com/projectcalico/cni-plugin/issues/874) Rel: poseidon/terraform-render-bootstrap#230
dghubble-robot
pushed a commit
to poseidon/terraform-aws-kubernetes
that referenced
this pull request
Nov 30, 2020
* Enable Calico MTU auto-detection * Remove [workaround](poseidon/typhoon#724) to Calico cni-plugin [issue](https://github.com/projectcalico/cni-plugin/issues/874) Rel: poseidon/terraform-render-bootstrap#230
dghubble-robot
pushed a commit
to poseidon/terraform-digitalocean-kubernetes
that referenced
this pull request
Nov 30, 2020
* Enable Calico MTU auto-detection * Remove [workaround](poseidon/typhoon#724) to Calico cni-plugin [issue](https://github.com/projectcalico/cni-plugin/issues/874) Rel: poseidon/terraform-render-bootstrap#230
dghubble-robot
pushed a commit
to poseidon/terraform-azure-kubernetes
that referenced
this pull request
Nov 30, 2020
* Enable Calico MTU auto-detection * Remove [workaround](poseidon/typhoon#724) to Calico cni-plugin [issue](https://github.com/projectcalico/cni-plugin/issues/874) Rel: poseidon/terraform-render-bootstrap#230
dghubble-robot
pushed a commit
to poseidon/terraform-onprem-kubernetes
that referenced
this pull request
Nov 30, 2020
* Enable Calico MTU auto-detection * Remove [workaround](poseidon/typhoon#724) to Calico cni-plugin [issue](https://github.com/projectcalico/cni-plugin/issues/874) Rel: poseidon/terraform-render-bootstrap#230
dghubble-robot
pushed a commit
to poseidon/terraform-google-kubernetes
that referenced
this pull request
Nov 30, 2020
* Enable Calico MTU auto-detection * Remove [workaround](poseidon/typhoon#724) to Calico cni-plugin [issue](https://github.com/projectcalico/cni-plugin/issues/874) Rel: poseidon/terraform-render-bootstrap#230
Snaipe
pushed a commit
to aristanetworks/monsoon
that referenced
this pull request
Apr 13, 2023
* Enable Calico MTU auto-detection * Remove [workaround](poseidon#724) to Calico cni-plugin [issue](https://github.com/projectcalico/cni-plugin/issues/874) Rel: poseidon/terraform-render-bootstrap#230
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Background:
Note, this isn't a host SELinux configuration issue.
Related: