Skip to content

Commit fc302ea

Browse files
Merge pull request #2517 from rh-roman/test-streaming-collection-encoding
[release-4.19] CNTRLPLANE-1609: Add feature gates for StreamingCollectionEncoding
2 parents 079ac08 + 23c9220 commit fc302ea

8 files changed

+54
-0
lines changed

features.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@
4949
| ProcMountType| | | <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> |
5050
| 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> |
5151
| 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> |
52+
| 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> |
53+
| 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> |
5254
| 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> |
5355
| 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> |
5456
| 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
@@ -808,6 +808,22 @@ var (
808808
enableIn(configv1.DevPreviewNoUpgrade).
809809
mustRegister()
810810

811+
FeatureStreamingCollectionEncodingToJSON = newFeatureGate("StreamingCollectionEncodingToJSON").
812+
reportProblemsToJiraComponent("kube-apiserver").
813+
contactPerson("rofeldma").
814+
productScope(kubernetes).
815+
enhancementPR("https://github.com/kubernetes/enhancements/issues/5116").
816+
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
817+
mustRegister()
818+
819+
FeatureStreamingCollectionEncodingToProtobuf = newFeatureGate("StreamingCollectionEncodingToProtobuf").
820+
reportProblemsToJiraComponent("kube-apiserver").
821+
contactPerson("rofeldma").
822+
productScope(kubernetes).
823+
enhancementPR("https://github.com/kubernetes/enhancements/issues/5116").
824+
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
825+
mustRegister()
826+
811827
FeatureGateGatewayAPIController = newFeatureGate("GatewayAPIController").
812828
reportProblemsToJiraComponent("Routing").
813829
contactPerson("miciah").

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,12 @@
160160
{
161161
"name": "SigstoreImageVerificationPKI"
162162
},
163+
{
164+
"name": "StreamingCollectionEncodingToJSON"
165+
},
166+
{
167+
"name": "StreamingCollectionEncodingToProtobuf"
168+
},
163169
{
164170
"name": "TranslateStreamCloseWebsocketRequests"
165171
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,12 @@
275275
{
276276
"name": "SigstoreImageVerificationPKI"
277277
},
278+
{
279+
"name": "StreamingCollectionEncodingToJSON"
280+
},
281+
{
282+
"name": "StreamingCollectionEncodingToProtobuf"
283+
},
278284
{
279285
"name": "TranslateStreamCloseWebsocketRequests"
280286
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,12 @@
275275
{
276276
"name": "SigstoreImageVerification"
277277
},
278+
{
279+
"name": "StreamingCollectionEncodingToJSON"
280+
},
281+
{
282+
"name": "StreamingCollectionEncodingToProtobuf"
283+
},
278284
{
279285
"name": "TranslateStreamCloseWebsocketRequests"
280286
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,12 @@
160160
{
161161
"name": "SigstoreImageVerificationPKI"
162162
},
163+
{
164+
"name": "StreamingCollectionEncodingToJSON"
165+
},
166+
{
167+
"name": "StreamingCollectionEncodingToProtobuf"
168+
},
163169
{
164170
"name": "TranslateStreamCloseWebsocketRequests"
165171
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,12 @@
275275
{
276276
"name": "SigstoreImageVerificationPKI"
277277
},
278+
{
279+
"name": "StreamingCollectionEncodingToJSON"
280+
},
281+
{
282+
"name": "StreamingCollectionEncodingToProtobuf"
283+
},
278284
{
279285
"name": "TranslateStreamCloseWebsocketRequests"
280286
},

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -275,6 +275,12 @@
275275
{
276276
"name": "SigstoreImageVerification"
277277
},
278+
{
279+
"name": "StreamingCollectionEncodingToJSON"
280+
},
281+
{
282+
"name": "StreamingCollectionEncodingToProtobuf"
283+
},
278284
{
279285
"name": "TranslateStreamCloseWebsocketRequests"
280286
},

0 commit comments

Comments
 (0)