Skip to content

OTA-1339: Add UpdateStatusAPI FG for DevPreview #2246

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

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions features.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
| SELinuxMount| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
| ShortCertRotation| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
| SigstoreImageVerificationPKI| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
| UpdateStatusAPI| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
| NewOLM| | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
| AWSClusterHostedDNS| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
| AutomatedEtcdBackup| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
Expand Down
12 changes: 12 additions & 0 deletions features/features.go
Original file line number Diff line number Diff line change
Expand Up @@ -825,4 +825,16 @@ var (
enhancementPR("https://github.com/openshift/enhancements/pull/1748").
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
mustRegister()

FeatureGateUpdateStatusAPI = newFeatureGate("UpdateStatusAPI").
reportProblemsToJiraComponent("Cluster Version Operator").
contactPerson("pmuller").
productScope(ocpSpecific).
// OTA originally created and used the UpgradeStatus legacy feature gate for the related
// functionality, enabled in TechPreview. Moving the functionality into the cluster,
// exposed by an API proved to be more complex and experimental than thought, so it was
// decided to create and use a new feature gate that is only enabled in DevPreview.
enhancementPR("https://github.com/openshift/enhancements/pull/1701").
enableIn(configv1.DevPreviewNoUpgrade).
mustRegister()
)
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,9 @@
{
"name": "TranslateStreamCloseWebsocketRequests"
},
{
"name": "UpdateStatusAPI"
},
{
"name": "UpgradeStatus"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,9 @@
{
"name": "TranslateStreamCloseWebsocketRequests"
},
{
"name": "UpdateStatusAPI"
},
{
"name": "UpgradeStatus"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,9 @@
},
{
"name": "SigstoreImageVerificationPKI"
},
{
"name": "UpdateStatusAPI"
}
],
"enabled": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,9 @@
{
"name": "TranslateStreamCloseWebsocketRequests"
},
{
"name": "UpdateStatusAPI"
},
{
"name": "UpgradeStatus"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,9 @@
{
"name": "TranslateStreamCloseWebsocketRequests"
},
{
"name": "UpdateStatusAPI"
},
{
"name": "UpgradeStatus"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@
},
{
"name": "SigstoreImageVerificationPKI"
},
{
"name": "UpdateStatusAPI"
}
],
"enabled": [
Expand Down