Skip to content

Commit ea51d97

Browse files
committed
DRA: promote feature gate to beta
1 parent 30f5282 commit ea51d97

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

pkg/features/versioned_kube_features.go

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,7 @@ var defaultVersionedKubernetesFeatureGates = map[featuregate.Feature]featuregate
179179

180180
DynamicResourceAllocation: {
181181
{Version: version.MustParse("1.26"), Default: false, PreRelease: featuregate.Alpha},
182+
{Version: version.MustParse("1.32"), Default: false, PreRelease: featuregate.Beta},
182183
},
183184

184185
ElasticIndexedJob: {

test/e2e/dra/kind.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ nodes:
2020
v: "5"
2121
apiServer:
2222
extraArgs:
23-
runtime-config: "resource.k8s.io/v1alpha3=true"
23+
runtime-config: "resource.k8s.io/v1beta1=true"
2424
- |
2525
kind: InitConfiguration
2626
nodeRegistration:
@@ -40,5 +40,9 @@ nodes:
4040
nodeRegistration:
4141
kubeletExtraArgs:
4242
v: "5"
43+
# Feature gates must be the last entry in this YAML.
44+
# Some Prow jobs add more feature gates with
45+
#
46+
# --config <(cat test/e2e/dra/kind.yaml; echo " <some feature>: true")
4347
featureGates:
4448
DynamicResourceAllocation: true

test/featuregates_linter/test_data/versioned_feature_list.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -412,6 +412,10 @@
412412
lockToDefault: false
413413
preRelease: Alpha
414414
version: "1.26"
415+
- default: false
416+
lockToDefault: false
417+
preRelease: Beta
418+
version: "1.32"
415419
- name: EfficientWatchResumption
416420
versionedSpecs:
417421
- default: false

0 commit comments

Comments
 (0)