AWS - Containers on AWS - 009

preview_player
Показать описание
Preparing for AWS Certified Cloud Practitioner Certification, In this video we explain the different containers options on AWS:
Amazon Elastic Kubernetes Service (Amazon EKS)
Amazon Elastic Container Service (Amazon ECS)
Serverless Containers "Fargate"
Amazon Elastic Container Registry (Amazon ECR)

#aws #cloudcomputing #containers #ecs #eks #fargate #ecr
Рекомендации по теме
Комментарии
Автор

I appreciate your way of teaching, you make everything so simple easy to understand and crystal clear

Tuba.k
Автор

This is what has been missing from the other videos and trainers. You explain the concepts first. I need to know why we need these services not just when and how to use them Thanks.

quizmember
Автор

I love your videos, simple breakdowns and easy to understand. I hated cloud until i found your channel and I'm excited about the possibilities in cloud now. Thank you so much!

matthewtrout
Автор

Clear explanations, engaging delivery, and super helpful examples. Thank you for making complex concepts easy to understand!

DevonOng
Автор

Bro, you're so easy to understand. I can be reading text for hours and it makes half sense. I listen to you and it's 100% clear. Thank you

infernalx
Автор

Kubernatis manages containers:
- Manages container health
- knows when to kill old ones
- manages resources in container

EKS is to move on premise container kubernatis to cloud kubernatis


EC2
Fargate is the lambda of EKS


ECS - Elastic Container Service
Native aws mngnt dogtware for ecs.

benja
Автор

How to deploy containers on AWS:

EKS: Elastic Kubernatis Service:
- For when you are On premise and moving to Cloud
- Fully Managed
- For Orchestration
- Where do you run the container?
A) EC2
Provision a server and run it from EC2
Containers would use the EC2 machines CPU and RAM

or

B) Fargate
Serverless like lambda, you don't need to provision servers.
- Point to your container images
- AWS is responsible for the resources

ECS: Elastic Container Service

- Native container management software


Where can you run your containers?
A) On EC2 but you will have to share the resources of the ec2 instance
- You will have to pay attention to your ec2 and your resources
- You have to worry about your resources

or

B) Fargate:

So on premise it's managed by Kubernatis
and on the cloud we can use EKS or ECS


Where do you store your containers?
ECR - Elastic Container Registry:
- Alternative to Docker Hub (Docker hub is public)
- ECR is private
- It's a native AWS Service so well integreated

benja