Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make 1.17 default #2444

Merged
merged 1 commit into from
Jul 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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