EKS : -
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Youtube : https://www.youtube.com/watch?v=p6xDCz00TxU
eksctl : https://eksctl.io/introduction/#getting-started
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
What is EKS ?
It is a managed Kubernetes cluster .
EKS is a managed Kubernetes service which mean it will manage the master nodes for you.
Installs the all the necessary per-requisites are per-installed , such as container run time , Kubernetes master processes ,
-- Will takecare scaling when needed.
-- Doing backups on that.
once these things are setup , you can go ahead and create the Control-Plane on the cluster. -- Meaning the Master Nodes
You can create this using the Management console or using AWS command line.
Once you have the control plane , once AWS creates all these master nodes . You need to create the worker nodes and connect to cluster.
In kubernetes cluster these worker nodes will be some EC2 instances with certain CPU, RAM and storage resources . so how do we create worker nodes and get them to the cluster.
EKSCTL : Command line tool for EKS. It is not a Aws tool it is Weaveworks are the contributors community
One single eksctl command does all of these .
https://eksctl.io/introduction/#getting-started
Deleting the Kubernetes Cluster:
Comments
Post a Comment