Skip to content

Commit 422203b

Browse files
Merge pull request #2212 from jsafrane/add-selinuxmount
STOR-2267: Add SELinuxMount and SELinuxChangePolicy to DevPreview
2 parents f2caafd + 1c61d27 commit 422203b

8 files changed

+54
-0
lines changed

features.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
| ClusterVersionOperatorConfiguration| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1010
| Example2| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1111
| NewOLMCatalogdAPIV1Metas| | | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
12+
| SELinuxChangePolicy| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
13+
| SELinuxMount| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1214
| SigstoreImageVerificationPKI| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
1315
| NewOLM| | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> | | <span style="background-color: #519450">Enabled</span> |
1416
| 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> |

features/features.go

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -766,4 +766,20 @@ var (
766766
enhancementPR("https://github.com/openshift/enhancements/pull/1712").
767767
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
768768
mustRegister()
769+
770+
FeatureGateSELinuxChangePolicy = newFeatureGate("SELinuxChangePolicy").
771+
reportProblemsToJiraComponent("Storage / Kubernetes").
772+
contactPerson("jsafrane").
773+
productScope(kubernetes).
774+
enhancementPR("https://github.com/kubernetes/enhancements/issues/1710").
775+
enableIn(configv1.DevPreviewNoUpgrade).
776+
mustRegister()
777+
778+
FeatureGateSELinuxMount = newFeatureGate("SELinuxMount").
779+
reportProblemsToJiraComponent("Storage / Kubernetes").
780+
contactPerson("jsafrane").
781+
productScope(kubernetes).
782+
enhancementPR("https://github.com/kubernetes/enhancements/issues/1710").
783+
enableIn(configv1.DevPreviewNoUpgrade).
784+
mustRegister()
769785
)

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,12 @@
154154
{
155155
"name": "RouteExternalCertificate"
156156
},
157+
{
158+
"name": "SELinuxChangePolicy"
159+
},
160+
{
161+
"name": "SELinuxMount"
162+
},
157163
{
158164
"name": "ServiceAccountTokenNodeBinding"
159165
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,12 @@
236236
{
237237
"name": "RouteExternalCertificate"
238238
},
239+
{
240+
"name": "SELinuxChangePolicy"
241+
},
242+
{
243+
"name": "SELinuxMount"
244+
},
239245
{
240246
"name": "ServiceAccountTokenNodeBinding"
241247
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@
4545
{
4646
"name": "NewOLMCatalogdAPIV1Metas"
4747
},
48+
{
49+
"name": "SELinuxChangePolicy"
50+
},
51+
{
52+
"name": "SELinuxMount"
53+
},
4854
{
4955
"name": "SigstoreImageVerificationPKI"
5056
}

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,12 @@
154154
{
155155
"name": "RouteExternalCertificate"
156156
},
157+
{
158+
"name": "SELinuxChangePolicy"
159+
},
160+
{
161+
"name": "SELinuxMount"
162+
},
157163
{
158164
"name": "ServiceAccountTokenNodeBinding"
159165
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,12 @@
236236
{
237237
"name": "RouteExternalCertificate"
238238
},
239+
{
240+
"name": "SELinuxChangePolicy"
241+
},
242+
{
243+
"name": "SELinuxMount"
244+
},
239245
{
240246
"name": "ServiceAccountTokenNodeBinding"
241247
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@
3939
{
4040
"name": "MultiArchInstallAzure"
4141
},
42+
{
43+
"name": "SELinuxChangePolicy"
44+
},
45+
{
46+
"name": "SELinuxMount"
47+
},
4248
{
4349
"name": "SigstoreImageVerificationPKI"
4450
}

0 commit comments

Comments
 (0)