-
Notifications
You must be signed in to change notification settings - Fork 843
Add CapacityBuffer feature gate to TechPreview #3012
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: master
Are you sure you want to change the base?
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 |
|---|---|---|
|
|
@@ -1067,4 +1067,11 @@ var ( | |
| enhancementPR("https://github.com/openshift/enhancements/pull/2047"). | ||
| enable(inTechPreviewNoUpgrade(), inDevPreviewNoUpgrade()). | ||
| mustRegister() | ||
|
|
||
| FeatureGateCapacityBufferAvailable = newFeatureGate("CapacityBufferAvailable"). | ||
| reportProblemsToJiraComponent("Cluster Autoscaler"). | ||
| contactPerson("elmiko"). | ||
| productScope(ocpSpecific). | ||
| enable(inTechPreviewNoUpgrade(), inDevPreviewNoUpgrade()). | ||
| mustRegister() | ||
|
Comment on lines
+1071
to
+1076
Contributor
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. This feature gate needs an OpenShift Enhancement Proposal associated with it. All new features must have an associated enhancement proposal and that enhancement proposal must be merged for a new feature gate to enter the |
||
| ) | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,6 +25,9 @@ | |
| { | ||
| "name": "CRIOCredentialProviderConfig" | ||
| }, | ||
| { | ||
| "name": "CapacityBufferAvailable" | ||
| }, | ||
|
Comment on lines
+28
to
+30
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. 🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win Keep TechPreviewNoUpgrade configuration consistent with the registered gate.
📍 Affects 3 files
🤖 Prompt for AI Agents |
||
| { | ||
| "name": "ClientsAllowCBOR" | ||
| }, | ||
|
|
||
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.
🎯 Functional Correctness | 🟠 Major | ⚡ Quick win
🔎 Supported by static analysis
🏁 Script executed:
Repository: openshift/api
Length of output: 50369
🏁 Script executed:
Repository: openshift/api
Length of output: 26158
🏁 Script executed:
Repository: openshift/api
Length of output: 7372
Add enhancement metadata before registering
CapacityBufferAvailable.mustRegister()panics whenregister()rejects the emptyenhancementPRURL.CapacityBufferAvailableis not inlegacyFeatureGates, so package initialization fails. Add a valid enhancement URL.🤖 Prompt for AI Agents