Skip to content

Commit c92c2d8

Browse files
committed
Promote streaming list encoding to Default on Hypershift.
1 parent 7720577 commit c92c2d8

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

features.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@
4141
| ServiceAccountTokenPodNodeInfo| | | <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> |
4242
| 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> |
4343
| 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> |
44-
| 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> |
45-
| 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> |
4644
| 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> |
4745
| 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> |
4846
| VSphereMultiVCenters| | | <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> |
4947
| ValidatingAdmissionPolicy| | | <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> |
5048
| VolumeGroupSnapshot| | | <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> |
5149
| ExternalOIDC| <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> | <span style="background-color: #519450">Enabled</span> |
50+
| 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> | <span style="background-color: #519450">Enabled</span> |
51+
| 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> | <span style="background-color: #519450">Enabled</span> |
5252
| AdminNetworkPolicy| <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> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
5353
| AlibabaPlatform| <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> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |
5454
| AzureWorkloadIdentity| <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> | <span style="background-color: #519450">Enabled</span> | <span style="background-color: #519450">Enabled</span> |

features/features.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -353,13 +353,15 @@ var (
353353
contactPerson("rofeldma").
354354
productScope(kubernetes).
355355
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
356+
enableForClusterProfile(Hypershift, configv1.Default).
356357
mustRegister()
357358

358359
FeatureStreamingCollectionEncodingToProtobuf = newFeatureGate("StreamingCollectionEncodingToProtobuf").
359360
reportProblemsToJiraComponent("kube-apiserver").
360361
contactPerson("rofeldma").
361362
productScope(kubernetes).
362363
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
364+
enableForClusterProfile(Hypershift, configv1.Default).
363365
mustRegister()
364366

365367
FeatureGateSignatureStores = newFeatureGate("SignatureStores").

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -136,12 +136,6 @@
136136
{
137137
"name": "SigstoreImageVerification"
138138
},
139-
{
140-
"name": "StreamingCollectionEncodingToJSON"
141-
},
142-
{
143-
"name": "StreamingCollectionEncodingToProtobuf"
144-
},
145139
{
146140
"name": "TranslateStreamCloseWebsocketRequests"
147141
},
@@ -225,6 +219,12 @@
225219
{
226220
"name": "PrivateHostedZoneAWS"
227221
},
222+
{
223+
"name": "StreamingCollectionEncodingToJSON"
224+
},
225+
{
226+
"name": "StreamingCollectionEncodingToProtobuf"
227+
},
228228
{
229229
"name": "VSphereControlPlaneMachineSet"
230230
},

0 commit comments

Comments
 (0)