Skip to content

Commit

Permalink
Update EKS Kubernetes version to use 1.16
Browse files Browse the repository at this point in the history
Update Terraform and website to use 1.16 version.
  • Loading branch information
aLekSer committed Sep 15, 2020
1 parent 25ed44e commit 973956b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion install/terraform/modules/eks/eks.tf
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ module "eks" {
cluster_name = var.cluster_name
subnets = module.vpc.public_subnets
vpc_id = module.vpc.vpc_id
cluster_version = "1.15"
cluster_version = "1.16"

worker_groups_launch_template = [
{
Expand Down
15 changes: 15 additions & 0 deletions site/content/en/docs/Installation/Creating Cluster/eks.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ Possible steps are the following:
1. Run `aws configure` to authorize your `awscli` with proper `AWS Access Key ID` and `AWS Secret Access Key`.
1. Create an example cluster:

{{% feature expiryVersion="1.9.0" %}}
```
eksctl create cluster \
--name prod \
Expand All @@ -26,6 +27,20 @@ eksctl create cluster \
--nodes-max 4 \
--node-ami auto
```
{{% /feature %}}
{{% feature publishVersion="1.9.0" %}}
```
eksctl create cluster \
--name prod \
--version 1.16 \
--nodegroup-name standard-workers \
--node-type t3.medium \
--nodes 3 \
--nodes-min 3 \
--nodes-max 4 \
--node-ami auto
```
{{% /feature %}}

{{< alert title="Note" color="info">}}
EKS does not use the normal Kubernetes networking since it is [incompatible with Amazon VPC networking](https://www.contino.io/insights/kubernetes-is-hard-why-eks-makes-it-easier-for-network-and-security-architects).
Expand Down

0 comments on commit 973956b

Please sign in to comment.