Skip to content

Commit fed56f2

Browse files
Merge pull request openshift#2381 from dobsonj/STOR-2462
STOR-2462: Add ExternalSnapshotMetadata FeatureGate
2 parents 3333746 + 11cdf02 commit fed56f2

8 files changed

+27
-0
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
| ClusterVersionOperatorConfiguration| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1010
| DualReplica| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1111
| Example2| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
12+
| ExternalSnapshotMetadata| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1213
| NewOLMCatalogdAPIV1Metas| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1314
| NewOLMOwnSingleNamespace| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1415
| NewOLMPreflightPermissionChecks| | | | <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
@@ -465,6 +465,14 @@ var (
465465
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
466466
mustRegister()
467467

468+
FeatureGateExternalSnapshotMetadata = newFeatureGate("ExternalSnapshotMetadata").
469+
reportProblemsToJiraComponent("Storage / Kubernetes External Components").
470+
contactPerson("jdobson").
471+
productScope(kubernetes).
472+
enhancementPR("https://github.com/kubernetes/enhancements/issues/3314").
473+
enableIn(configv1.DevPreviewNoUpgrade).
474+
mustRegister()
475+
468476
FeatureGateExternalOIDC = newFeatureGate("ExternalOIDC").
469477
reportProblemsToJiraComponent("authentication").
470478
contactPerson("liouk").

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@
7676
{
7777
"name": "ExternalOIDCWithUIDAndExtraClaimMappings"
7878
},
79+
{
80+
"name": "ExternalSnapshotMetadata"
81+
},
7982
{
8083
"name": "GCPClusterHostedDNS"
8184
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,9 @@
131131
{
132132
"name": "ExternalOIDCWithUIDAndExtraClaimMappings"
133133
},
134+
{
135+
"name": "ExternalSnapshotMetadata"
136+
},
134137
{
135138
"name": "GCPClusterHostedDNS"
136139
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
{
3434
"name": "Example2"
3535
},
36+
{
37+
"name": "ExternalSnapshotMetadata"
38+
},
3639
{
3740
"name": "MachineAPIOperatorDisableMachineHealthCheckController"
3841
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,9 @@
7979
{
8080
"name": "ExternalOIDCWithUIDAndExtraClaimMappings"
8181
},
82+
{
83+
"name": "ExternalSnapshotMetadata"
84+
},
8285
{
8386
"name": "GCPClusterHostedDNS"
8487
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,9 @@
116116
{
117117
"name": "ExternalOIDCWithUIDAndExtraClaimMappings"
118118
},
119+
{
120+
"name": "ExternalSnapshotMetadata"
121+
},
119122
{
120123
"name": "GCPClusterHostedDNS"
121124
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
{
3434
"name": "Example2"
3535
},
36+
{
37+
"name": "ExternalSnapshotMetadata"
38+
},
3639
{
3740
"name": "MachineAPIOperatorDisableMachineHealthCheckController"
3841
},

0 commit comments

Comments
 (0)