Skip to content

Commit

Permalink
Make 1.17 default (#2444)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbeaumont committed Jul 15, 2020
1 parent 9ac389a commit c9e14d3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion pkg/apis/eksctl.io/v1alpha5/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const (
Version1_18 = "1.18"

// DefaultVersion represents default Kubernetes version supported by EKS
DefaultVersion = Version1_16
DefaultVersion = Version1_17

// LatestVersion represents latest Kubernetes version supported by EKS
LatestVersion = Version1_17
Expand Down
2 changes: 1 addition & 1 deletion pkg/cfn/builder/api_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ var _ = Describe("CloudFormation template builder API", func() {
Metadata: &api.ClusterMeta{
Region: "us-west-2",
Name: clusterName,
Version: "1.16",
Version: "1.17",
},
Status: &api.ClusterStatus{
Endpoint: endpoint,
Expand Down
2 changes: 1 addition & 1 deletion pkg/ctl/cmdutils/filter/nodegroup_filter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ const expected = `
"metadata": {
"name": "test-3x3-ngs",
"region": "eu-central-1",
"version": "1.16"
"version": "1.17"
},
"iam": {},
"vpc": {
Expand Down
4 changes: 2 additions & 2 deletions userdocs/src/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ eksctl create cluster --name=cluster-1 --nodes=4
```

EKS supports versions `1.14`, `1.15`, `1.16` (default) and `1.17`.
EKS supports versions `1.14`, `1.15`, `1.16` and `1.17` (default).
With `eksctl` you can deploy any of the supported versions by passing `--version`.

```
eksctl create cluster --version=1.16
eksctl create cluster --version=1.17
```

Expand Down

0 comments on commit c9e14d3

Please sign in to comment.