Posts

Showing posts from August, 2023

EKS : UDMY

Image
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Github - Repo -- owned by kalyan reddy daida https://github.com/stacksimplify/terraform-on-aws-eks On Youtube : Shorter Video https://www.youtube.com/watch?v=IJBHIuURA3g&list=PLLh98oBzdb7YLnm-67RnNIjrD98g1w2js   ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++   terraform init terraform init is a command used in HashiCorp Terraform, which is an infrastructure-as-code tool used for managing and provisioning infrastructure resources. The terraform init command initializes a Terraform configuration, setting up the environment for a new or existing project. Here's what it does: Plugin Initialization: When you create or work with a new Terraform configuration (a set of .tf files that define your infrastructure), terraform init is used to initialize the working directory. This involves downloading and installing any required provider plugins, which are responsible for i...

EKS : -

Image
 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 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 EC...