Skip to content

Commit 98e18da

Browse files
Merge pull request #2528 from rh-roman/test-streaming-collection-encoding-4.18
[release-4.18] CNTRLPLANE-1610: Add feature gates for StreamingCollectionEncoding
2 parents e16f6cc + 6d071af commit 98e18da

8 files changed

+54
-0
lines changed

features.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@
4545
| ServiceAccountTokenNodeBinding| | | <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> |
4646
| 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> |
4747
| 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> |
48+
| StreamingCollectionEncodingToJSON| | | <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> |
49+
| StreamingCollectionEncodingToProtobuf| | | <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> |
4850
| 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> |
4951
| 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> |
5052
| UserNamespacesPodSecurityStandards| | | <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
@@ -60,6 +60,22 @@ var (
6060
enableIn(configv1.Default, configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
6161
mustRegister()
6262

63+
FeatureStreamingCollectionEncodingToJSON = newFeatureGate("StreamingCollectionEncodingToJSON").
64+
reportProblemsToJiraComponent("kube-apiserver").
65+
contactPerson("rofeldma").
66+
productScope(kubernetes).
67+
enhancementPR("https://github.com/kubernetes/enhancements/issues/5116").
68+
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
69+
mustRegister()
70+
71+
FeatureStreamingCollectionEncodingToProtobuf = newFeatureGate("StreamingCollectionEncodingToProtobuf").
72+
reportProblemsToJiraComponent("kube-apiserver").
73+
contactPerson("rofeldma").
74+
productScope(kubernetes).
75+
enhancementPR("https://github.com/kubernetes/enhancements/issues/5116").
76+
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
77+
mustRegister()
78+
6379
FeatureGateGatewayAPI = newFeatureGate("GatewayAPI").
6480
reportProblemsToJiraComponent("Routing").
6581
contactPerson("miciah").

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,12 @@
148148
{
149149
"name": "SigstoreImageVerification"
150150
},
151+
{
152+
"name": "StreamingCollectionEncodingToJSON"
153+
},
154+
{
155+
"name": "StreamingCollectionEncodingToProtobuf"
156+
},
151157
{
152158
"name": "TranslateStreamCloseWebsocketRequests"
153159
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,12 @@
230230
{
231231
"name": "SigstoreImageVerification"
232232
},
233+
{
234+
"name": "StreamingCollectionEncodingToJSON"
235+
},
236+
{
237+
"name": "StreamingCollectionEncodingToProtobuf"
238+
},
233239
{
234240
"name": "TranslateStreamCloseWebsocketRequests"
235241
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,12 @@
230230
{
231231
"name": "SigstoreImageVerification"
232232
},
233+
{
234+
"name": "StreamingCollectionEncodingToJSON"
235+
},
236+
{
237+
"name": "StreamingCollectionEncodingToProtobuf"
238+
},
233239
{
234240
"name": "TranslateStreamCloseWebsocketRequests"
235241
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,12 @@
148148
{
149149
"name": "SigstoreImageVerification"
150150
},
151+
{
152+
"name": "StreamingCollectionEncodingToJSON"
153+
},
154+
{
155+
"name": "StreamingCollectionEncodingToProtobuf"
156+
},
151157
{
152158
"name": "TranslateStreamCloseWebsocketRequests"
153159
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,12 @@
230230
{
231231
"name": "SigstoreImageVerification"
232232
},
233+
{
234+
"name": "StreamingCollectionEncodingToJSON"
235+
},
236+
{
237+
"name": "StreamingCollectionEncodingToProtobuf"
238+
},
233239
{
234240
"name": "TranslateStreamCloseWebsocketRequests"
235241
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,12 @@
230230
{
231231
"name": "SigstoreImageVerification"
232232
},
233+
{
234+
"name": "StreamingCollectionEncodingToJSON"
235+
},
236+
{
237+
"name": "StreamingCollectionEncodingToProtobuf"
238+
},
233239
{
234240
"name": "TranslateStreamCloseWebsocketRequests"
235241
},

0 commit comments

Comments
 (0)