Skip to content

Commit 1f788b8

Browse files
Merge pull request #2525 from tjungblu/CNTRLPLANE-1614
CNTRLPLANE-1614: add event-ttl feature gate
2 parents 595e66a + 3e3fbce commit 1f788b8

8 files changed

+27
-1
lines changed

features.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@
3838
| DyanmicServiceEndpointIBMCloud| | | <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> |
3939
| DynamicResourceAllocation| | | <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> |
4040
| EtcdBackendQuota| | | <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> |
41+
| EventTTL| | | <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> |
4142
| Example| | | <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> |
4243
| GCPClusterHostedDNS| | | <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> |
4344
| GCPCustomAPIEndpoints| | | <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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,6 @@ var (
8484
enableIn(configv1.Default, configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
8585
mustRegister()
8686

87-
8887
FeatureGateDynamicResourceAllocation = newFeatureGate("DynamicResourceAllocation").
8988
reportProblemsToJiraComponent("scheduling").
9089
contactPerson("jchaloup").
@@ -878,4 +877,12 @@ var (
878877
enhancementPR("https://github.com/kubernetes/enhancements/issues/4222").
879878
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
880879
mustRegister()
880+
881+
FeatureEventTTL = newFeatureGate("EventTTL").
882+
reportProblemsToJiraComponent("kube-apiserver").
883+
contactPerson("tjungblu").
884+
productScope(ocpSpecific).
885+
enhancementPR("https://github.com/openshift/enhancements/pull/1857").
886+
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
887+
mustRegister()
881888
)

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@
8888
{
8989
"name": "EtcdBackendQuota"
9090
},
91+
{
92+
"name": "EventTTL"
93+
},
9194
{
9295
"name": "EventedPLEG"
9396
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,9 @@
143143
{
144144
"name": "EtcdBackendQuota"
145145
},
146+
{
147+
"name": "EventTTL"
148+
},
146149
{
147150
"name": "Example"
148151
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,9 @@
152152
{
153153
"name": "EtcdBackendQuota"
154154
},
155+
{
156+
"name": "EventTTL"
157+
},
155158
{
156159
"name": "Example"
157160
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@
8888
{
8989
"name": "EtcdBackendQuota"
9090
},
91+
{
92+
"name": "EventTTL"
93+
},
9194
{
9295
"name": "EventedPLEG"
9396
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,9 @@
125125
{
126126
"name": "EtcdBackendQuota"
127127
},
128+
{
129+
"name": "EventTTL"
130+
},
128131
{
129132
"name": "Example"
130133
},

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,9 @@
134134
{
135135
"name": "EtcdBackendQuota"
136136
},
137+
{
138+
"name": "EventTTL"
139+
},
137140
{
138141
"name": "Example"
139142
},

0 commit comments

Comments
 (0)