-
Notifications
You must be signed in to change notification settings - Fork 39.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
Fix:Image garbage collection is always disabled in kubelet in 1.11 #66051
Conversation
Thanks for your pull request. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please follow instructions at https://git.k8s.io/community/CLA.md#the-contributor-license-agreement to sign the CLA. It may take a couple minutes for the CLA signature to be fully registered; after that, please reply here with a new comment and we'll verify. Thanks.
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. I understand the commands that are listed here. |
pkg/kubelet/kubelet.go
Outdated
// when the high threshold is set to 100, stub the image GC manager | ||
if kl.kubeletConfiguration.ImageGCHighThresholdPercent == 100 { | ||
glog.V(2).Infof("ImageGCHighThresholdPercent is set 100, Disable image GC") | ||
go func() { stopChan <- struct{}{} }() | ||
go func() { close(stopChan) }() |
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.
Why not just returning here?
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.
modified
Please add a release note. |
/cc @foxish, the 1.11 patch release manager. |
/ok-to-test @dashpole, do we have any image gc tests? |
[MILESTONENOTIFIER] Milestone Pull Request: Up-to-date for process Pull Request Labels
|
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jiaxuanzhou, yujuhong 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 |
ack, let's cherrypick this into 1.11.1 |
/test pull-kubernetes-e2e-gce |
Automatic merge from submit-queue (batch tested with PRs 66051, 66049). If you want to cherry-pick this change to another branch, please follow the instructions here. |
@jianglingxia cold you please create PRs to cherrypick the fix to 1.11? Thanks. |
What this PR does / why we need it:
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Fixes #66046
Special notes for your reviewer:
@yujuhong @derekwaynecarr
Release note: