Тёмный

CREATE AWS EKS CLUSTER | Kubernetes on AWS | Kubernetes Basics | Nodes and Pods in Kubernetes 

Beyond The Cloud
Подписаться 1,5 тыс.
Просмотров 5 тыс.
50% 1

Hello Dear All, my name is Amit. I am here to give some tips and tricks about cloud learning and some day to day problem solving methods. I'm an professional cloud engineer, working in this fields for 12+ years.
If you have any queries regarding AWS issues... feel free to reach out to me.
In this video, I have discussed how can you provision AWS Application Load Balancer in front of EC2
AWS EKS (Elastic Kubernetes Service) is a managed Kubernetes service provided by Amazon Web Services (AWS). Kubernetes is an open-source container orchestration platform that simplifies the deployment, scaling, and management of containerized applications. With EKS, AWS takes care of the underlying infrastructure and management tasks, allowing you to focus on deploying and running your applications in a scalable and highly available manner.
After setting up the EKS cluster, you can deploy and manage containerized applications using Kubernetes manifests and interact with the cluster using kubectl. You can scale the applications up and down based on demand, and EKS will handle the underlying infrastructure scaling.
You can also update the cluster's configuration, upgrade the Kubernetes version, and modify the node group size to adapt to changing requirements. EKS provides a robust, managed Kubernetes solution that allows you to focus on your application's development and deployment without worrying about infrastructure management.
Codebase: github.com/nspacer/eks-basics
My email Id : beyondthecloud2022@gmail.com
facebook: / beyondthecloud2022
Linkedin: / beyondthecloud2023
#aws #amazonwebservices #software #softwareengineer #developers #clouds #cloudengineer #cloudcomputing #systemdesign #database #programming #fullstack #cloudsecurity #security #fullstacksoftwareengineering #itindustry #engineering #engineer #beyondthecloud #AWSSystemsmanager #AWSdocuments #AWSautomation #s3 #S3sucurity #yamlfile #jsontemplate #python #pythonprogramming #awsec2 #awsec2security #ec2security #instancemetadata #ec2 #awslambda #awsconfig #cloudwatch #dynamodb #awsiam #boto3 #cdk #infrastructure #insfrastructureascode #python #sqs #terraform #terraformers #terraform #terraformtutorial
@BeABetterDev @AWSTutorialsOnline @cluut @TinyTechnicalTutorials @BlockExplorerMedia @nickchapsas @itversity @TechwithLucy @Intellipaat @knowledgeindia @SimplilearnOfficial @TechnicalGuftgu @MachineLearningHub @edurekaIN @in28minutes @CodeWithHarry @QuickSupport @byluckysir

Наука

Опубликовано:

 

31 июл 2023

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 24   
@beyondthecloud
@beyondthecloud 10 месяцев назад
Please provide your valuable feedback in the comment section. Please like share and subscribe for more upcoming content
@mariajayaraj3341
@mariajayaraj3341 Месяц назад
Nice video, clear explanation, thanks lot.
@beyondthecloud
@beyondthecloud 5 дней назад
You are welcome!
@MWKING
@MWKING Месяц назад
more videos like this please
@beyondthecloud
@beyondthecloud Месяц назад
Thank you for watching
@bepositive6525
@bepositive6525 Год назад
Bery informative
@beyondthecloud
@beyondthecloud Год назад
Glad you think so!
@aparnasengupta03
@aparnasengupta03 Год назад
Thanks for this video. Some request & comment required from your end - 1) Could you make a video on how to use CICD Pipeline to deploy Kubernetes Applications using Terraform ,EKS, Jenkins. 2)Also could you suggest some best resources to learn "terraform" from scratch. 3) What are your opinion on book -Terraform Up & Running Writing Infrastructure as Code by Yevgeniy Brikman (O'Reilly publisher)
@beyondthecloud
@beyondthecloud 10 месяцев назад
Great suggestion!
@pupun813
@pupun813 11 месяцев назад
very nice video
@beyondthecloud
@beyondthecloud 11 месяцев назад
Thanks
@manickamkagamalai5836
@manickamkagamalai5836 Месяц назад
if you possible to use with Wordpress for example it will be cleare more understanding :)
@beyondthecloud
@beyondthecloud 5 дней назад
I will do it..
@naveenk3447
@naveenk3447 4 месяца назад
This helped me so much but can you please add the links & commands in the git hub.
@chimagerald5910
@chimagerald5910 5 месяцев назад
Thanks for this project. You didn't include your scripts in your README file.
@AWSwala
@AWSwala 8 месяцев назад
when you navigated to the compute section of your eks cluster "dev" why there were no nodes listed there although you have 3 different t3.medium nodes are running in the node groups we are able to see the node groups in the console but not the nodes why? This question arises because although those are managed nodes but what if i want to see what all pods are running in my worker node (I can do that with master itself - true) but i want to see that running on my worker node. also if some error occur while deploying some application it is better to debug the error if we have the access to worker node
@beyondthecloud
@beyondthecloud 7 месяцев назад
I will take a look into it. May be it was a bit delayed but it was definitely there. Agree with you
@AWSwala
@AWSwala 7 месяцев назад
@@beyondthecloud I think there is some permission issue so the user who created the eks will only be able to see the nodes in the compute pane as you created on user named as kubernetes but you are logged in as some cloud_user.
@manickamkagamalai5836
@manickamkagamalai5836 Месяц назад
How to clean up the cluster via eksctl
@beyondthecloud
@beyondthecloud 5 дней назад
Cleaning up an Amazon EKS (Elastic Kubernetes Service) cluster using `eksctl` involves a few key steps, including deleting the cluster itself, associated node groups, and any related AWS resources. Here's a general guide on how to do it: ### Prerequisites 1. **Install `eksctl`:** Ensure you have `eksctl` installed. If not, you can install it following the instructions [here](eksctl.io/). 2. **AWS CLI:** Make sure you have the AWS CLI installed and configured with the appropriate credentials. ### Steps to Clean Up EKS Cluster 1. **Delete Nodegroups:** First, you may need to delete the node groups associated with the cluster. This step ensures that the worker nodes are terminated and their associated resources (like EC2 instances) are cleaned up. ```sh eksctl delete nodegroup --cluster= --name= ``` - Replace `` with the name of your EKS cluster. - Replace `` with the name of the node group. If you have multiple node groups, you'll need to run this command for each one. 2. **Delete Fargate Profiles:** If your cluster has any Fargate profiles, you should delete them as well: ```sh eksctl delete fargateprofile --cluster= --name= ``` - Replace `` with the name of the Fargate profile. 3. **Delete the EKS Cluster:** After deleting node groups and Fargate profiles, you can delete the EKS cluster itself: ```sh eksctl delete cluster --name= ``` This command deletes the EKS cluster and all its associated resources (like VPC, security groups, CloudFormation stacks, etc.) created by `eksctl`. ### Additional Cleanup While `eksctl` handles most of the cleanup, you may have additional resources associated with your EKS cluster, such as: - **Elastic Load Balancers (ELBs)** - **Amazon EFS volumes** - **ECR repositories** - **CloudWatch log groups** - **IAM roles and policies** These may need to be manually reviewed and deleted via the AWS Management Console or AWS CLI if not automatically removed. ### Verification After deletion, verify that all resources have been cleaned up to avoid unexpected charges. You can use the AWS Management Console, AWS CLI, or tools like AWS Cost Explorer to ensure no lingering resources remain. ### Example Script ```sh #!/bin/bash CLUSTER_NAME="your-cluster-name" # Delete node groups eksctl delete nodegroup --cluster=$CLUSTER_NAME --all # Delete Fargate profiles eksctl delete fargateprofile --cluster=$CLUSTER_NAME --all # Delete the cluster eksctl delete cluster --name=$CLUSTER_NAME ``` This script deletes all node groups and Fargate profiles before removing the cluster. ### Note Ensure you have backups or snapshots of any important data before deleting your cluster and its associated resources. This action is irreversible and will result in the loss of all data stored in the cluster.
@naaa_anveshana
@naaa_anveshana Год назад
Hlo sir
@beyondthecloud
@beyondthecloud 11 месяцев назад
Hello
@naaa_anveshana
@naaa_anveshana Год назад
Can we contact you
@beyondthecloud
@beyondthecloud 11 месяцев назад
of course
Далее
How to deploy your website to production in 30 minutes
3:03:08
AWS re:Invent 2021 - Deep dive on Amazon EKS
49:28
Просмотров 44 тыс.
Create a private Kubernetes cluster on AWS EKS
21:02
Просмотров 11 тыс.
КАКОЙ SAMSUNG КУПИТЬ В 2024 ГОДУ
14:59