forked from kubernetes/autoscaler
-
Notifications
You must be signed in to change notification settings - Fork 25
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
No scale down for rolling update machineDeployment #160
Merged
himanshu-kun
merged 5 commits into
gardener:machine-controller-manager-provider
from
himanshu-kun:no-scale-down-during-rolling-update
Mar 16, 2023
Merged
No scale down for rolling update machineDeployment #160
himanshu-kun
merged 5 commits into
gardener:machine-controller-manager-provider
from
himanshu-kun:no-scale-down-during-rolling-update
Mar 16, 2023
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
himanshu-kun
requested review from
unmarshall,
rishabh-11 and
a team
as code owners
January 9, 2023 08:57
@himanshu-kun You need rebase this pull request with latest master branch. Please check. |
gardener-robot
added
needs/rebase
Needs git rebase
needs/review
Needs review
size/m
Size of pull request is medium (see gardener-robot robot/bots/size.py)
labels
Jan 9, 2023
gardener-robot-ci-2
added
reviewed/ok-to-test
Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD)
needs/ok-to-test
Needs approval for testing (check PR in detail before setting this label because PR is run on CI/CD)
and removed
reviewed/ok-to-test
Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD)
labels
Jan 9, 2023
himanshu-kun
force-pushed
the
no-scale-down-during-rolling-update
branch
from
January 9, 2023 09:49
29da250
to
4b960b9
Compare
gardener-robot-ci-1
added
reviewed/ok-to-test
Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD)
and removed
reviewed/ok-to-test
Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD)
labels
Jan 9, 2023
rishabh-11
requested changes
Jan 9, 2023
gardener-robot
added
needs/changes
Needs (more) changes
size/s
Size of pull request is small (see gardener-robot robot/bots/size.py)
and removed
size/m
Size of pull request is medium (see gardener-robot robot/bots/size.py)
labels
Jan 9, 2023
gardener-robot-ci-3
added
the
reviewed/ok-to-test
Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD)
label
Jan 10, 2023
gardener-robot-ci-2
removed
the
reviewed/ok-to-test
Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD)
label
Jan 10, 2023
Thanks for the changes. |
gardener-robot
added
reviewed/lgtm
Has approval for merging
needs/changes
Needs (more) changes
and removed
needs/changes
Needs (more) changes
needs/review
Needs review
reviewed/lgtm
Has approval for merging
labels
Jan 10, 2023
rishabh-11
approved these changes
Jan 10, 2023
himanshu-kun
force-pushed
the
no-scale-down-during-rolling-update
branch
from
January 23, 2023 10:22
efa357c
to
c085070
Compare
gardener-robot-ci-2
added
reviewed/ok-to-test
Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD)
and removed
reviewed/ok-to-test
Has approval for testing (check PR in detail before setting this label because PR is run on CI/CD)
labels
Jan 23, 2023
gardener-robot
added
the
status/closed
Issue is closed (either delivered or triaged)
label
Mar 16, 2023
himanshu-kun
added
the
needs/cherry-pick
Needs to be cherry-picked to older version
label
Mar 29, 2023
/needs cherry-pick |
@himanshu-kun No more than 5 labels permitted, but 13 labels were given. |
This was referenced Apr 10, 2023
rishabh-11
pushed a commit
that referenced
this pull request
Apr 10, 2023
…ing update (#209) * fixNodeGroupSize logic silenced * no scale-down allowed during rolling update * updated logs * removed useless found variable * addressed review comments and some refactoring
rishabh-11
pushed a commit
that referenced
this pull request
Apr 10, 2023
…ing update (#208) * fixNodeGroupSize logic silenced * no scale-down allowed during rolling update * updated logs * removed useless found variable * addressed review comments and some refactoring
rishabh-11
pushed a commit
that referenced
this pull request
Apr 10, 2023
…ing update (#207) * fixNodeGroupSize logic silenced * no scale-down allowed during rolling update * updated logs * removed useless found variable * addressed review comments and some refactoring
rishabh-11
pushed a commit
that referenced
this pull request
Apr 10, 2023
…ing update (#206) * fixNodeGroupSize logic silenced * no scale-down allowed during rolling update * updated logs * removed useless found variable * addressed review comments and some refactoring
rishabh-11
pushed a commit
that referenced
this pull request
Apr 10, 2023
…ing update (#205) * fixNodeGroupSize logic silenced * no scale-down allowed during rolling update * updated logs * removed useless found variable * addressed review comments and some refactoring
himanshu-kun
removed
the
needs/cherry-pick
Needs to be cherry-picked to older version
label
Apr 14, 2023
2 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
needs/ok-to-test
Needs approval for testing (check PR in detail before setting this label because PR is run on CI/CD)
reviewed/lgtm
Has approval for merging
size/m
Size of pull request is medium (see gardener-robot robot/bots/size.py)
status/closed
Issue is closed (either delivered or triaged)
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.
What this PR does / why we need it:
This PR adds changes to avoid any scale-down (scale-down due to underutilization was already stopped earlier using the
scale-down-disabled
annotation) like removal of longUnregistered nodes or removal of registered but long not Ready nodes.Which issue(s) this PR fixes:
Fixes #30
Special notes for your reviewer:
Part of fix as per solution proposed here
Logic relies on the
Progressing
condition of machineDeployment.Release note: