January 2019
Intermediate to advanced
484 pages
11h 48m
English
The EKS control plane is a managed Kubernetes master; you just need to use the AWS CLI to specify your IAM, subnets, and security group. This example also specifies the Kubernetes version as 1.10:
// Note: specify all 4 subnets$ aws eks create-cluster --name chap10 --role-arn arn:aws:iam::xxxxxxxxxxxx:role/eksServiceRole --resources-vpc-config subnetIds=subnet-09f8f7f06c27cb0a0,subnet-04b78ed9b5f96d76e,subnet-026058e32f09c28af,subnet-08e16157c15cefcbc,securityGroupIds=sg-0fbac0a39bf64ba10 --kubernetes-version 1.10
This takes around 10 minutes to complete. You can check the status by typing aws eks describe-cluster --name chap10. Once your control plane status is ACTIVE, you can start to set up kubeconfig to ...
Read now
Unlock full access