Skip to content

Commit 311324c

Browse files
Merge pull request openshift#2382 from gnufied/add-storage-perforant-security-policy
STOR-2370: Add featuregates for storage performant security policies
2 parents 41708f6 + 11fb92b commit 311324c

8 files changed

+27
-0
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
| SignatureStores| | | <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> |
5757
| SigstoreImageVerification| | | <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> |
5858
| SigstoreImageVerificationPKI| | | <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> |
59+
| StoragePerformantSecurityPolicy| | | <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> |
5960
| TranslateStreamCloseWebsocketRequests| | | <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> |
6061
| UpgradeStatus| | | <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> |
6162
| VSphereConfigurableMaxAllowedBlockVolumesPerNode| | | <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> |

features/features.go

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -807,6 +807,14 @@ var (
807807
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
808808
mustRegister()
809809

810+
FeatureGateStoragePerformantSecurityPolicy = newFeatureGate("StoragePerformantSecurityPolicy").
811+
reportProblemsToJiraComponent("Storage / Kubernetes External Components").
812+
contactPerson("hekumar").
813+
productScope(ocpSpecific).
814+
enhancementPR("https://github.com/openshift/enhancements/pull/1804").
815+
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
816+
mustRegister()
817+
810818
FeatureGateAWSDedicatedHosts = newFeatureGate("AWSDedicatedHosts").
811819
reportProblemsToJiraComponent("Installer").
812820
contactPerson("faermanj").

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,9 @@
178178
{
179179
"name": "SigstoreImageVerificationPKI"
180180
},
181+
{
182+
"name": "StoragePerformantSecurityPolicy"
183+
},
181184
{
182185
"name": "TranslateStreamCloseWebsocketRequests"
183186
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,9 @@
278278
{
279279
"name": "SigstoreImageVerificationPKI"
280280
},
281+
{
282+
"name": "StoragePerformantSecurityPolicy"
283+
},
281284
{
282285
"name": "TranslateStreamCloseWebsocketRequests"
283286
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,9 @@
281281
{
282282
"name": "SigstoreImageVerificationPKI"
283283
},
284+
{
285+
"name": "StoragePerformantSecurityPolicy"
286+
},
284287
{
285288
"name": "TranslateStreamCloseWebsocketRequests"
286289
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,9 @@
178178
{
179179
"name": "SigstoreImageVerificationPKI"
180180
},
181+
{
182+
"name": "StoragePerformantSecurityPolicy"
183+
},
181184
{
182185
"name": "TranslateStreamCloseWebsocketRequests"
183186
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,9 @@
278278
{
279279
"name": "SigstoreImageVerificationPKI"
280280
},
281+
{
282+
"name": "StoragePerformantSecurityPolicy"
283+
},
281284
{
282285
"name": "TranslateStreamCloseWebsocketRequests"
283286
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -281,6 +281,9 @@
281281
{
282282
"name": "SigstoreImageVerificationPKI"
283283
},
284+
{
285+
"name": "StoragePerformantSecurityPolicy"
286+
},
284287
{
285288
"name": "TranslateStreamCloseWebsocketRequests"
286289
},

0 commit comments

Comments
 (0)