-
Notifications
You must be signed in to change notification settings - Fork 54
{WIP] disable nodeip-configuration service #1059
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
base: release-4.18
Are you sure you want to change the base?
{WIP] disable nodeip-configuration service #1059
Conversation
Reviewer's GuideModify the disk creation script to disable the nodeip-configuration service alongside kubelet and remove its ordering directive from the gvisor-tap-vsock container unit. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
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.
Hey @praveenkumar - I've reviewed your changes and they look great!
Here's what I looked at during the review
- 🟡 General issues: 1 issue found
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
# Disable kubelet service | ||
${SSH} core@${VM_IP} -- sudo systemctl disable kubelet | ||
${SSH} core@${VM_IP} -- sudo systemctl disable kubelet nodeip-configuration |
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.
suggestion (bug_risk): Disabled nodeip-configuration but not stopped it
Run systemctl stop nodeip-configuration
or use --now
to disable and stop it.
# Disable kubelet service | |
${SSH} core@${VM_IP} -- sudo systemctl disable kubelet | |
${SSH} core@${VM_IP} -- sudo systemctl disable kubelet nodeip-configuration | |
# Disable and stop kubelet and nodeip-configuration services | |
${SSH} core@${VM_IP} -- sudo systemctl disable --now kubelet nodeip-configuration |
Why? What problem does it solve? |
It shouldn't start during boot but start when kubelet service start so that it shouldn't interfere with networking and block tap-vsock to get the IP. |
PR needs rebase. 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-sigs/prow repository. |
Summary by Sourcery
Disable the nodeip-configuration service on VMs and remove its ordering constraint from the gvisor-tap-vsock container unit.
Enhancements: