-
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ spec: | |
| - "--leader-elect" | ||
| - "--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}" | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Will be fixed in #12343 |
||
| - "--bootstrap-token-ttl=${KUBEADM_BOOTSTRAP_TOKEN_TTL:=15m}" | ||
| image: controller:latest | ||
| name: manager | ||
|
|
||
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