Skip to content

Commit

Permalink
[release-0.20] Make 1.16 as default (copy of #2199) (#2204)
Browse files Browse the repository at this point in the history
* Make 1.16 as default (copy of #2199)

* Add kubernetes 1.16 default to release notes

Co-authored-by: Tam Mach <[email protected]>
  • Loading branch information
martina-if and sayboras authored May 19, 2020
1 parent 936e85b commit 4753351
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions docs/release_notes/0.20.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Add support for GovCloud regions (#2190)
- Add nodes-min and nodes-max flags in ng scale (#2022)
- Make Kubernetes 1.16 the default version (#2204 #2199)


## Improvements
Expand Down
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 @@ -114,7 +114,7 @@ const (
Version1_16 = "1.16"

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

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

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

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

Expand Down Expand Up @@ -245,7 +245,7 @@ The features that are currently implemented are:
- Update a cluster
- Use custom AMIs
- Configure VPC Networking
- Configure accesss to API endpoints
- Configure access to API endpoints
- Support for GPU nodegroups
- Spot instances and mixed instances
- IAM Management and Add-on Policies
Expand Down

0 comments on commit 4753351

Please sign in to comment.