Skip to content

Commit a65e80b

Browse files
committed
Enable MutatingAdmissionPolicy in tech preview
1 parent a463917 commit a65e80b

8 files changed

+33
-6
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
| EventedPLEG| | | | | | |
55
| MachineAPIOperatorDisableMachineHealthCheckController| | | | | | |
66
| MultiArchInstallAzure| | | | | | |
7+
| MutatingAdmissionPolicy| | | | | | |
78
| ShortCertRotation| | | | | | |
89
| ClusterVersionOperatorConfiguration| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |
910
| DualReplica| | | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> | | |

features/features.go

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,14 @@ var (
6060
enableIn(configv1.Default, configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
6161
mustRegister()
6262

63+
FeatureGateMutatingAdmissionPolicy = newFeatureGate("MutatingAdmissionPolicy").
64+
reportProblemsToJiraComponent("kube-apiserver").
65+
contactPerson("benluddy").
66+
productScope(kubernetes).
67+
enhancementPR("https://github.com/kubernetes/enhancements/issues/3962").
68+
enableIn().
69+
mustRegister()
70+
6371
FeatureGateGatewayAPI = newFeatureGate("GatewayAPI").
6472
reportProblemsToJiraComponent("Routing").
6573
contactPerson("miciah").
@@ -133,12 +141,12 @@ var (
133141
mustRegister()
134142

135143
FeatureGateAzureDedicatedHosts = newFeatureGate("AzureDedicatedHosts").
136-
reportProblemsToJiraComponent("installer").
137-
contactPerson("rvanderp3").
138-
productScope(ocpSpecific).
139-
enhancementPR("https://github.com/openshift/enhancements/pull/1783").
140-
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
141-
mustRegister()
144+
reportProblemsToJiraComponent("installer").
145+
contactPerson("rvanderp3").
146+
productScope(ocpSpecific).
147+
enhancementPR("https://github.com/openshift/enhancements/pull/1783").
148+
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
149+
mustRegister()
142150

143151
FeatureGateMaxUnavailableStatefulSet = newFeatureGate("MaxUnavailableStatefulSet").
144152
reportProblemsToJiraComponent("apps").

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,9 @@
124124
{
125125
"name": "MultiArchInstallAzure"
126126
},
127+
{
128+
"name": "MutatingAdmissionPolicy"
129+
},
127130
{
128131
"name": "NewOLM"
129132
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727
{
2828
"name": "MultiArchInstallAzure"
2929
},
30+
{
31+
"name": "MutatingAdmissionPolicy"
32+
},
3033
{
3134
"name": "NewOLM"
3235
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
{
3737
"name": "MultiArchInstallAzure"
3838
},
39+
{
40+
"name": "MutatingAdmissionPolicy"
41+
},
3942
{
4043
"name": "NewOLM"
4144
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,9 @@
127127
{
128128
"name": "MultiArchInstallAzure"
129129
},
130+
{
131+
"name": "MutatingAdmissionPolicy"
132+
},
130133
{
131134
"name": "NewOLMCatalogdAPIV1Metas"
132135
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@
2727
{
2828
"name": "MultiArchInstallAzure"
2929
},
30+
{
31+
"name": "MutatingAdmissionPolicy"
32+
},
3033
{
3134
"name": "ShortCertRotation"
3235
}

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@
3636
{
3737
"name": "MultiArchInstallAzure"
3838
},
39+
{
40+
"name": "MutatingAdmissionPolicy"
41+
},
3942
{
4043
"name": "SELinuxMount"
4144
},

0 commit comments

Comments
 (0)