-
Notifications
You must be signed in to change notification settings - Fork 1.4k
✨Add inplace updates featuregate #12755
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
✨Add inplace updates featuregate #12755
Conversation
|
/lgtm |
|
LGTM label has been added. Git tree hash: a800e75e1593bfac271a1005c1042e88b09a26da
|
Signed-off-by: Alexandr Demicev <[email protected]>
4741dbd to
b5f0930
Compare
|
Thx! /lgtm |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: sbueringer 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 |
|
LGTM label has been added. Git tree hash: ec2cb08ff484b5a915f369b559223684888e0963
|
| - "--diagnostics-address=${CAPI_DIAGNOSTICS_ADDRESS:=:8443}" | ||
| - "--insecure-diagnostics=${CAPI_INSECURE_DIAGNOSTICS:=false}" | ||
| - "--feature-gates=MachinePool=${EXP_MACHINE_POOL:=true},KubeadmBootstrapFormatIgnition=${EXP_KUBEADM_BOOTSTRAP_FORMAT_IGNITION:=false},PriorityQueue=${EXP_PRIORITY_QUEUE:=false}" | ||
| - "--feature-gates=MachinePool=${EXP_MACHINE_POOL:=true},KubeadmBootstrapFormatIgnition=${EXP_KUBEADM_BOOTSTRAP_FORMAT_IGNITION:=false},PriorityQueue=${EXP_PRIORITY_QUEUE:=false},InPlaceUpdates=${EXP_IN_PLACE_UPDATES:=false}" |
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.
updates and upgrades are not the same topic. was this discussed on the CAEP?
if this feature gate covers installing new versions of kubernetes or a Linux kernel and OS packages maybe it should be InPlaceUpgrades.
update, implies changing a value and making smaller changes, such as updating a machine 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.
In CAPI we usually use upgrade to refer to Kubernetes version bumps, while updates are all sort of rollouts (including Kubernetes version bumps)
With that in mind, choosing updates was intentional
| - "--diagnostics-address=${CAPI_DIAGNOSTICS_ADDRESS:=:8443}" | ||
| - "--insecure-diagnostics=${CAPI_INSECURE_DIAGNOSTICS:=false}" | ||
| - "--feature-gates=MachinePool=${EXP_MACHINE_POOL:=true},KubeadmBootstrapFormatIgnition=${EXP_KUBEADM_BOOTSTRAP_FORMAT_IGNITION:=false},PriorityQueue=${EXP_PRIORITY_QUEUE:=false}" | ||
| - "--feature-gates=MachinePool=${EXP_MACHINE_POOL:=true},KubeadmBootstrapFormatIgnition=${EXP_KUBEADM_BOOTSTRAP_FORMAT_IGNITION:=false},PriorityQueue=${EXP_PRIORITY_QUEUE:=false},InPlaceUpdates=${EXP_IN_PLACE_UPDATES:=false}" |
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.
@alexander-demicev Just fyi, this was the wrong manager.yaml. Should have been KCP not CABPK
(just noticed when implementing a prototype)
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.
Will be fixed in #12343
What this PR does / why we need it:
This PR adds inplace updates featuregate
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)format, will close the issue(s) when PR gets merged):Tracking issue #12291
/area misc