-
Notifications
You must be signed in to change notification settings - Fork 615
MCO-2293: adds RHEL10 featuregate #2860
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 |
|---|---|---|
|
|
@@ -58,6 +58,9 @@ | |
| { | ||
| "name": "OLMLifecycleAndCompatibility" | ||
| }, | ||
| { | ||
| "name": "RHCOS10DefaultInstall" | ||
| }, | ||
|
Comment on lines
+61
to
+63
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. Version mismatch: gate enabled for v5+ in code but disabled in cross-version manifest. This manifest covers versions Consider version-specific entries or per-major-version manifests so v4.x and v5+ resolve correctly. 🤖 Prompt for AI Agents |
||
| { | ||
| "name": "ShortCertRotation" | ||
| } | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -242,6 +242,9 @@ | |
| { | ||
| "name": "ProvisioningRequestAvailable" | ||
| }, | ||
| { | ||
| "name": "RHCOS10DefaultInstall" | ||
| }, | ||
|
Comment on lines
+245
to
+247
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. Version mismatch: gate enabled for v5+ in code but disabled in cross-version manifest. This manifest covers versions Consider version-specific entries or per-major-version manifests to align v4.x (disabled) and v5+ (enabled) behavior. 🤖 Prompt for AI Agents |
||
| { | ||
| "name": "SELinuxMount" | ||
| }, | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -64,6 +64,9 @@ | |
| { | ||
| "name": "ProvisioningRequestAvailable" | ||
| }, | ||
| { | ||
| "name": "RHCOS10DefaultInstall" | ||
| }, | ||
|
Comment on lines
+67
to
+69
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. Version mismatch: gate enabled for v5+ in code but disabled in cross-version manifest. This manifest covers versions Consider version-specific entries or per-major-version manifests to correctly represent v4.x (disabled) and v5+ (enabled). 🤖 Prompt for AI Agents |
||
| { | ||
| "name": "ShortCertRotation" | ||
| }, | ||
|
|
||
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.
Version mismatch: gate enabled for v5+ in code but disabled in cross-version manifest.
This manifest covers versions
4,5,6,7,8,9,10(line 8) but has a singlefeatureGatesentry withversion: ""(line 365), meaning the disabled list applies to all versions. However,features/features.goline 891 enables this gate for version>=5viaenable(inVersion(5, greaterThanOrEqual)). Operators reading this manifest for v5+ will seeRHCOS10DefaultInstallas disabled, conflicting with the code definition.Consider splitting into version-specific entries (disabled for v<5, enabled/absent for v>=5) or separate per-major-version manifests so v4.x shows disabled and v5+ resolves to enabled.
🤖 Prompt for AI Agents