AWS - EKS: Introduce
- Anh Nguyen tuan
- Jul 8, 2022
- 1 min read
Updated: Jul 13, 2022

There are some courses to learn:
Kubernetes: https://youtu.be/X48VuDVv0do
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.


Fargate Consideration: https://docs.aws.amazon.com/eks/latest/userguide/fargate.html
Practice link:
Slide link: https://github.com/stacksimplify/aws-eks-kubernetes-masterclass/tree/master/presentation
1. EKS Core Object


1.1) Virtual Private Cloud

2. How does EKS work:

3. Provision an EKS Cluster
$> eksctl create cluster --name=devclst --region=us-east-1 --zones=us-east-1a,us-east-1b --without-nodegroup
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