Skip to content

Commit 9da003a

Browse files
Merge pull request #2417 from andfasano/noregistry-clusterops-feature
AGENT-1262: add NoRegistryClusterOperations feature gate
2 parents 86ad96c + 3043152 commit 9da003a

8 files changed

+27
-0
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
| MachineAPIOperatorDisableMachineHealthCheckController| | | | | | |
66
| MultiArchInstallAzure| | | | | | |
77
| ShortCertRotation| | | | | | |
8+
| NoRegistryClusterOperations| | | | <span style="background-color: #519450">Enabled</span> | | |
89
| BootImageSkewEnforcement| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
910
| ClusterVersionOperatorConfiguration| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1011
| Example2| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |

features/features.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -827,4 +827,12 @@ var (
827827
enhancementPR("https://github.com/openshift/enhancements/pull/1792").
828828
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
829829
mustRegister()
830+
831+
FeatureGateNoRegistryClusterOperations = newFeatureGate("NoRegistryClusterOperations").
832+
reportProblemsToJiraComponent("Installer / Agent based installation").
833+
contactPerson("andfasano").
834+
productScope(ocpSpecific).
835+
enhancementPR("https://github.com/openshift/enhancements/pull/1821").
836+
enableForClusterProfile(SelfManaged, configv1.DevPreviewNoUpgrade).
837+
mustRegister()
830838
)

payload-manifests/featuregates/featureGate-Hypershift-Default.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,9 @@
160160
{
161161
"name": "NewOLMWebhookProviderOpenshiftServiceCA"
162162
},
163+
{
164+
"name": "NoRegistryClusterOperations"
165+
},
163166
{
164167
"name": "NodeSwap"
165168
},

payload-manifests/featuregates/featureGate-Hypershift-DevPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
{
4343
"name": "NewOLMWebhookProviderOpenshiftServiceCA"
4444
},
45+
{
46+
"name": "NoRegistryClusterOperations"
47+
},
4548
{
4649
"name": "ShortCertRotation"
4750
}

payload-manifests/featuregates/featureGate-Hypershift-TechPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
{
5555
"name": "NewOLMWebhookProviderOpenshiftServiceCA"
5656
},
57+
{
58+
"name": "NoRegistryClusterOperations"
59+
},
5760
{
5861
"name": "SELinuxMount"
5962
},

payload-manifests/featuregates/featureGate-SelfManagedHA-Default.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,9 @@
160160
{
161161
"name": "NewOLMWebhookProviderOpenshiftServiceCA"
162162
},
163+
{
164+
"name": "NoRegistryClusterOperations"
165+
},
163166
{
164167
"name": "NodeSwap"
165168
},

payload-manifests/featuregates/featureGate-SelfManagedHA-DevPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,9 @@
227227
{
228228
"name": "NewOLMWebhookProviderOpenshiftServiceCA"
229229
},
230+
{
231+
"name": "NoRegistryClusterOperations"
232+
},
230233
{
231234
"name": "NodeSwap"
232235
},

payload-manifests/featuregates/featureGate-SelfManagedHA-TechPreviewNoUpgrade.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@
3939
{
4040
"name": "MultiArchInstallAzure"
4141
},
42+
{
43+
"name": "NoRegistryClusterOperations"
44+
},
4245
{
4346
"name": "SELinuxMount"
4447
},

0 commit comments

Comments
 (0)