Skip to content

Commit 3ba95c9

Browse files
committed
promote kep-4369 to beta
1 parent 3a620a3 commit 3ba95c9

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

Diff for: pkg/features/kube_features.go

+1
Original file line numberDiff line numberDiff line change
@@ -645,6 +645,7 @@ const (
645645
// owner: @HirazawaUi
646646
// kep: https://kep.k8s.io/4369
647647
// alpha: v1.30
648+
// beta: v1.32
648649
//
649650
// Allow almost all printable ASCII characters in environment variables
650651
RelaxedEnvironmentVariableValidation featuregate.Feature = "RelaxedEnvironmentVariableValidation"

Diff for: pkg/features/versioned_kube_features.go

+1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,6 @@ import (
3030
var defaultVersionedKubernetesFeatureGates = map[featuregate.Feature]featuregate.VersionedSpecs{
3131
RelaxedEnvironmentVariableValidation: {
3232
{Version: version.MustParse("1.30"), Default: false, PreRelease: featuregate.Alpha},
33+
{Version: version.MustParse("1.32"), Default: true, PreRelease: featuregate.Beta},
3334
},
3435
}

Diff for: test/featuregates_linter/test_data/versioned_feature_list.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,7 @@
44
lockToDefault: false
55
preRelease: Alpha
66
version: "1.30"
7+
- default: true
8+
lockToDefault: false
9+
preRelease: Beta
10+
version: "1.32"

0 commit comments

Comments
 (0)