-
Notifications
You must be signed in to change notification settings - Fork 548
featuregate for catalogd metas web api #2202
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 | ||||
---|---|---|---|---|---|---|
|
@@ -522,6 +522,14 @@ var ( | |||||
enableForClusterProfile(SelfManaged, configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade, configv1.Default). | ||||||
mustRegister() | ||||||
|
||||||
FeatureGateNewOLMCatalogdMetas = newFeatureGate("NewOLMCatalogdAPIV1Metas"). | ||||||
reportProblemsToJiraComponent("olm"). | ||||||
contactPerson("jordank"). | ||||||
productScope(ocpSpecific). | ||||||
enhancementPR("https://github.com/openshift/enhancements/pull/1749"). | ||||||
enableForClusterProfile(SelfManaged, configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade). | ||||||
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. I think you just want to enable everywhere and not make a distinction between cluster profiles
Suggested change
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. That would enable us for hypershift, and the new feature flag can't be enable there because its "parent" NewOLM cannot be enabled there yet. 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. Ack, in which case you have it correct already! |
||||||
mustRegister() | ||||||
|
||||||
FeatureGateInsightsOnDemandDataGather = newFeatureGate("InsightsOnDemandDataGather"). | ||||||
reportProblemsToJiraComponent("insights"). | ||||||
contactPerson("tremes"). | ||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,6 +118,9 @@ | |
{ | ||
"name": "NewOLM" | ||
}, | ||
{ | ||
"name": "NewOLMCatalogdAPIV1Metas" | ||
}, | ||
{ | ||
"name": "NodeSwap" | ||
}, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,6 +35,9 @@ | |
}, | ||
{ | ||
"name": "NewOLM" | ||
}, | ||
{ | ||
"name": "NewOLMCatalogdAPIV1Metas" | ||
} | ||
], | ||
"enabled": [ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,9 @@ | |
}, | ||
{ | ||
"name": "NewOLM" | ||
}, | ||
{ | ||
"name": "NewOLMCatalogdAPIV1Metas" | ||
} | ||
], | ||
"enabled": [ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -188,6 +188,9 @@ | |
{ | ||
"name": "NewOLM" | ||
}, | ||
{ | ||
"name": "NewOLMCatalogdAPIV1Metas" | ||
}, | ||
{ | ||
"name": "NodeDisruptionPolicy" | ||
}, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -188,6 +188,9 @@ | |
{ | ||
"name": "NewOLM" | ||
}, | ||
{ | ||
"name": "NewOLMCatalogdAPIV1Metas" | ||
}, | ||
{ | ||
"name": "NodeDisruptionPolicy" | ||
}, | ||
|
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.
This is deliberately not being enabled for HyperShift clusters?
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.
No, I think this is just where I'm uncertain about how to go about this. There are Hypershift and SelfManaged options, and I need the latter, but it's unclear how to also enable the former.
Do I list the feature twice (once for each)? Is Hypershift a superset of SelfManaged?
Without some feedback from SNO reviewers I don't think we want this landing as a surprise there, but otherwise this feature should be everywhere else.
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.
Ooh. Having played with it a bit, it appears that
Hypershift
is a superset ofSelfManaged
, so I /think/ I've fixed it.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.
NewOLM is not enabled on Hypershift (yet), therefore any new subfeature of NewOLM (like this one) should also not be enabled on hypershift.