Skip to content

Commit 28db677

Browse files
Merge pull request #2562 from benluddy/release-4.18-hypershift-list-encoding
[release-4.18] NO-JIRA: Promote streaming list encoding to Default on Hypershift.
2 parents 98e18da + a0eb693 commit 28db677

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
@@ -45,8 +45,6 @@
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> |
5048
| 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> |
5149
| 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> |
5250
| 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> |
@@ -55,6 +53,8 @@
5553
| VolumeAttributesClass| | | <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> |
5654
| 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> |
5755
| 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> |
56+
| 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> |
57+
| 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> |
5858
| AWSEFSDriverVolumeMetrics| <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> |
5959
| 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> |
6060
| 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> |

features/features.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ var (
6666
productScope(kubernetes).
6767
enhancementPR("https://github.com/kubernetes/enhancements/issues/5116").
6868
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
69+
enableForClusterProfile(Hypershift, configv1.Default).
6970
mustRegister()
7071

7172
FeatureStreamingCollectionEncodingToProtobuf = newFeatureGate("StreamingCollectionEncodingToProtobuf").
@@ -74,6 +75,7 @@ var (
7475
productScope(kubernetes).
7576
enhancementPR("https://github.com/kubernetes/enhancements/issues/5116").
7677
enableIn(configv1.DevPreviewNoUpgrade, configv1.TechPreviewNoUpgrade).
78+
enableForClusterProfile(Hypershift, configv1.Default).
7779
mustRegister()
7880

7981
FeatureGateGatewayAPI = newFeatureGate("GatewayAPI").

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -148,12 +148,6 @@
148148
{
149149
"name": "SigstoreImageVerification"
150150
},
151-
{
152-
"name": "StreamingCollectionEncodingToJSON"
153-
},
154-
{
155-
"name": "StreamingCollectionEncodingToProtobuf"
156-
},
157151
{
158152
"name": "TranslateStreamCloseWebsocketRequests"
159153
},
@@ -255,6 +249,12 @@
255249
{
256250
"name": "SetEIPForNLBIngressController"
257251
},
252+
{
253+
"name": "StreamingCollectionEncodingToJSON"
254+
},
255+
{
256+
"name": "StreamingCollectionEncodingToProtobuf"
257+
},
258258
{
259259
"name": "VSphereControlPlaneMachineSet"
260260
},

0 commit comments

Comments
 (0)