Skip to content

Commit 7bd6517

Browse files
authored
Default to newest k8s 1.32 version (#8300)
Signed-off-by: Davanum Srinivas <davanum@gmail.com>
1 parent 577156e commit 7bd6517

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

pkg/actions/addon/update_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ var _ = Describe("Update", func() {
636636

637637
addonManager, err := addon.New(&api.ClusterConfig{
638638
Metadata: &api.ClusterMeta{
639-
Version: api.Version1_30,
639+
Version: api.Version1_32,
640640
Name: clusterName,
641641
},
642642
AddonsConfig: e.addonsConfig,

pkg/apis/eksctl.io/v1alpha5/types.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,11 @@ const (
4646
Version1_29 = "1.29"
4747
Version1_30 = "1.30"
4848
Version1_31 = "1.31"
49+
Version1_32 = "1.32"
4950
DockershimDeprecationVersion = Version1_24
5051
//TODO: Remove this and replace with output from DescribeClusterVersions endpoint
5152
// DefaultVersion (default)
52-
DefaultVersion = Version1_30
53+
DefaultVersion = Version1_32
5354
)
5455

5556
const (

pkg/ctl/cmdutils/filter/nodegroup_filter_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ const expected = `
346346
"metadata": {
347347
"name": "test-3x3-ngs",
348348
"region": "eu-central-1",
349-
"version": "1.30"
349+
"version": "1.32"
350350
},
351351
"kubernetesNetworkConfig": {
352352
"ipFamily": "IPv4"

0 commit comments

Comments
 (0)