Self-Reflection
Hi to all,
Recently I have done the training of EKS. Today I want to share what I learn in this training. It's a 2 days training. I learn this training under my mentor Vimal Daga sir under Linux world India.
EKS(Amazon Elastic Kubernetes Service)
Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that makes it easy for you to run Kubernetes on AWS without needing to stand up or maintain your own Kubernetes control plane. Kubernetes is an open-source system for automating the deployment, scaling, and management of containerized applications.
Kubernetes Cluster
A cluster is a set of machines, called nodes, that run containerized applications managed by Kubernetes. A cluster has at least one worker node and at least one master node. The worker node (s) host the pods that are the components of the application. The master node (s) manages the worker nodes and the pods in the cluster.
Container Networking Interface(CNI)
The Amazon AWS CNI plugin is very IP address hungry and attaches multiple Secondary Private IP addresses to EKS worker nodes (EC2 instances) to provide pods in your cluster with directly assigned IPs. This means that you can easily exhaust subnet IP addresses with just a few EKS worker nodes running.
Forgate
AWS Fargate is a compute engine for Amazon Elastic Container Service(ECS) that allows you to run containers without having to provision, configure & scale clusters of VMs that host container applications. AWS Fargate eliminates the need for users to manage the EC2 instances on their own. In fact, users don’t need to use EC2 instances at all.
Helm
Kubernetes Helm is a package manager for Kubernetes, analogous to Yum or Apt. It makes it possible to organize Kubernetes objects in a packaged application that anyone can download and install in one click, or configure to their specific needs.
That's all
I learn so many new things in just 2 days. I would like to thank Vimal Daga for giving this knowledge.
Thank you for reading...