top of page

AWS - EKS: Introduce

  • Writer: Anh Nguyen tuan
    Anh Nguyen tuan
  • Jul 8, 2022
  • 1 min read

Updated: Jul 13, 2022


ree

There are some courses to learn:

  1. Kubernetes: https://youtu.be/X48VuDVv0do

  2. Udemy courses:

You can create a EKS Cluster but cannot create NodeGroup (EC2) with a free account, even in short, no free-tier for EKS. Refer these links to know more:

Highlights

  • RECOMMENDED APPROACH - First Learn with minikube on local or GCP.

  • 99% of things with Kubernetes remain the same in AWS, GCP and Azure.

  • ISTIO and HELM would be the same in all clouds

  • Compare Container Technologies.


ree


ree


Practice link:


Slide link: https://github.com/stacksimplify/aws-eks-kubernetes-masterclass/tree/master/presentation


1. EKS Core Object



ree


ree

1.1) Virtual Private Cloud
ree


2. How does EKS work:


ree

3. Provision an EKS Cluster


$> eksctl create cluster --name=devclst --region=us-east-1 --zones=us-east-1a,us-east-1b --without-nodegroup

ree

Acronym:

  • EKS: Elastic Kubernete Service

  • AMI: Amazon Machine Image

  • IAM: Identity Access management

  • OIDC: OpenID connect

  • ACL: Access Control List

  • EBS : Elastic Block Store


Reference links:

Comments


bottom of page