SlideShare a Scribd company logo
1 of 32
Download to read offline
© 2021 DXC Technology Company. All rights reserved.
AWS ECS vs EKS
March 12, 2021 2
© 2020 DXC Technology Company. All rights reserved.
Agenda
Tópico
Microservices Architecture
Orchestrating your containers
Container Orchestration Tools
AWS ECS vs EKS
ECS
Kubernetes Architecture – k8s
EKS
March 12, 2021 3
© 2021 DXC Technology Company. All rights reserved.
Microservices
Architecture
March 12, 2021 4
© 2020 DXC Technology Company. All rights reserved.
Microservices Architeture
March 12, 2021 5
© 2021 DXC Technology Company. All rights reserved.
Orchestrating your
containers
March 12, 2021 6
© 2020 DXC Technology Company. All rights reserved.
Orchestrating your containers
March 12, 2021 7
© 2021 DXC Technology Company. All rights reserved.
Container
Orchestration Tools
March 12, 2021 8
© 2020 DXC Technology Company. All rights reserved.
Container Orchestration Tools
Managing, scaling and deploying containers
March 12, 2021 9
© 2021 DXC Technology Company. All rights reserved.
AWS ECS vs EKS
March 12, 2021 10
© 2020 DXC Technology Company. All rights reserved.
EKS vs ECS
Image registry
Amazon Elastic
Container Registry
(Amazon ECR)
Orchestration
Amazon Elastic
Container Service
(Amazon ECS)
Amazon Elastic
Kubernetes
Service (Amazon
EKS)
Compute
Amazon Elastic
Compute Cloud
(Amazon EC2)
AWS Fargate
March 12, 2021 11
© 2021 DXC Technology Company. All rights reserved.
ECS
March 12, 2021 12
© 2020 DXC Technology Company. All rights reserved.
ECS
Fully managed container orchestration platform
Amazon ECR Amazon ECS scales
your application and
manages your
containers for
availability
Build images and
store using ECR or
any other repository
Amazon ECS
Define your
application
Manage
containers
Select container
images and
resources needed for
application
Amazon EC2
AWS Fargate
March 12, 2021 13
© 2020 DXC Technology Company. All rights reserved.
ECS
ECS cluster
EC2 instance EC2 instance EC2 instance
Amazon CloudWatch
IAM
Amazon EC2
Auto Scaling
Containers Containers Containers
AWS Cloud
Amazon ECS
March 12, 2021 14
© 2020 DXC Technology Company. All rights reserved.
ECS
internet Elastic Load
Balancing
Amazon EC2 instance
Task Task Amazon ECS
container
agent
Container Container
Amazon EC2 instance
Task Task Amazon ECS
container
agent
Container Container
Amazon EC2 instance
Task Task
Containers Container
Amazon ECS
container
agent
Amazon ECS
• Agent
communication
service
• API
• Cluster management
engine
• Key and value store
Elastic Load
Balancing
March 12, 2021 15
© 2020 DXC Technology Company. All rights reserved.
AWS Fargate Advantages
March 12, 2021 16
© 2021 DXC Technology Company. All rights reserved.
Arquitetura
Kubernetes – K8s
March 12, 2021 17
© 2020 DXC Technology Company. All rights reserved.
Kubernetes – K8s
Helps run
containers at scale
Open sourcecontainer
orchestration platform
Provides primitives
(building blocks)for
building modern
applications
March 12, 2021 18
© 2020 DXC Technology Company. All rights reserved.
• API Server: você precisa interagir com o cluster do Kubernetes? Use a API. A
API do Kubernetes é a interface do plano de controle. Ela processa
solicitações internas e externas. O servidor da API determina se uma
solicitação é válida. Se for, ela a processa. É possível acessar a API por meio
de chamadas REST, da interface de linha de comando kubectl;
• Scheduler: seu cluster está íntegro? Se você precisar de novos containers,
onde eles ficarão? Isso é um trabalho para o Scheduler. Ele analisa quais os
recursos de que um pod necessita, como CPU e memória. E também avalia
integridade do cluster. Depois, ele programa o pod no worker node apropriado.
• etcd: o etcd é um banco de dados de armazenamento de chave/valor que
contém as informações e dados de configuração sobre o estado do cluster. Ele
é distribuído, tolerante a falhas e foi projetado para ser a principal fonte de
informações sobre o cluster.
• Controller-Manager: um controlador é um loop de controle que observa o
estado compartilhado do cluster por meio do API Server e faz alterações na
tentativa de mover o estado atual para o estado desejado. Exemplos de
controladores que vêm com o Kubernetes hoje são o controlador de
replicação, controlador de endpoints, controlador de namespace e controlador
de contas de serviço.
• kubelet: faz a comunicação com o control plane. O kubelet assegura que os
containers estejam em execução em um pod. Quando o controlplane precisa
que algo aconteça em um worker node, o kubelet realiza a ação.
• kube-proxy: é um proxy que facilita os serviços de rede do Kubernetes. O
kube-proxy gerencia as comunicações de rede dentro e fora do cluster.
Arquitetura Kubernetes – K8s
March 12, 2021 19
© 2021 DXC Technology Company. All rights reserved.
EKS
March 12, 2021 20
© 2020 DXC Technology Company. All rights reserved.
EKS is fully managed Kubernetes
Amazon EKS helps customer run Kubernetes.
Amazon EKS makes it
easy to run
Kubernetes on AWS
Provision an
EKS cluster
Amazon EC2
Deploy worker
nodes for you
EKS cluster
Amazon EKS
Connect to EKS Run Kubernetes apps
March 12, 2021 21
© 2020 DXC Technology Company. All rights reserved.
EKS is Kubernetes certifiedconformant
• Customers can use existing tooland
plugins.
• Applications can run on anystandard
Kubernetes environment.
• Application can be easily migratedto
Amazon EKS.
March 12, 2021 22
© 2020 DXC Technology Company. All rights reserved.
Kubernetes components
us-east-1a
masters
etcd
worker nodes
Controller
manager
Cloud
controller
Scheduler
API Server
Pod Pod
kubelet
kube-proxy
Pod
March 12, 2021 23
© 2020 DXC Technology Company. All rights reserved.
Kubectl command line interface
masters
worker nodes
Controller
manager
Cloud
controller
Scheduler
API Server
Pod Pod
kubelet
kube-proxy
Pod
kubectl
$ kubectl get pods
NAME READY STATUS RESTARTS AGE
nginx-4293833666-20vr8 1/1 Running 0 2m
nginx-4293833666-3gzfw 1/1 Running 0 2m
nginx-4293833666-7nBiH 1/1 Running 0 2m
March 12, 2021 24
© 2020 DXC Technology Company. All rights reserved.
Kubernetes with high availability
masters
etcd
masters
etcd
masters
etcd
worker nodes
us-east-1a
© 2019 Amazon Web Services, Inc. or its Affiliates. All rights reserved.
worker nodes
us-east-1b
worker nodes
us-east-1c 148
March 12, 2021 25
© 2020 DXC Technology Company. All rights reserved.
Amazon EKS architecture
etcd etcd etcd
VPC
API Server Auto Scaling group
Etcd Auto Scaling group
master nodes master nodes
us-east-1c
us-east-1b
master nodes
us-east-1a
March 12, 2021 26
© 2020 DXC Technology Company. All rights reserved.
EKS – Hibrid Architecture: EC2 and Fargate
March 12, 2021 27
© 2020 DXC Technology Company. All rights reserved.
Sample architecture: Reliability
Public subnet Private subnet
Private subnet
AWS Cloud
Users
Amazon EKS
Amazon EKS
Application
Load Balancer
Amazon EKS
Amazon EKS
Amazon RDS
Amazon RDS
Network
Load Balancer
Amazon VPC
Auto Scaling group Auto Scaling group
Availability
Zones
March 12, 2021 28
© 2020 DXC Technology Company. All rights reserved.
Amazon ECS AWS Fargate Amazon EKS
Cost
Free Amazon service Pay for the amount of
memory and vCPU used by
the containers
Fee of $0.10 per cluster per
hour, around $72 per cluster
per month
Where it runs
Only available on AWS Only available on AWS as
part of Amazon ECS
Runs based on Kubernetes
and can be migrated in and
out of AWS anytime
Ease of use
Learning curve of Amazon
ECS architecture is lower
than that of Amazon EKS
Same learning curve as
Amazon ECS, but easier to
deploy and manage
More complex to use and
deploy containers.
What it supports
Supports AWS Management
Console, to access and
manage AWS through a
simple and intuitive web user
interface (WUI)
Supports AWS Management
Console, as ECS does
Supports Kubernetes plugins
integration
Compatibility
Windows containers
compatibility
Limited compatibility with
some Amazon services (e.g.,
you can’t attach persistent
storage to Fargate)
Every configuration needs to
be done using kubectl
ECS vs EKS vs Fargate
March 12, 2021 29
© 2020 DXC Technology Company. All rights reserved.
Microservice | API and Container Based Management Strategy
Container
Presentation
Layer
Application
Runtime
OS
Agent
API
Gateway
API
Mapping
Gateway
Account
Cloud Platform
Microservice A
Container
Application
Runtime
OS
Agent
Microservice B
Container
Application
Runtime
OS
Agent
Application Service Containers
Microservice C
Container
Application
Runtime
OS
Agent
Microservice D
Container
Application
Runtime
OS
Agent
DevOps Platform
System Monitoring
and Dashboards
Resource
Monitoring
Resource
Monitoring
Data Management
& Analytics
Visualization
API
API
API API
API
API
Container based deployment
Serverless Architecture
Unikernels Technologies
Continuous
Assessment
Continuous
Assessment
12 Factor Methodology
Shift Left Testing
Testing Automation
Monitoring and
Logging
Intelligent Alerts
Dynamic, Hybrid
Infrastructure
Security compliance and
patching
Infrastructure as Code
Shift Left Monitoring
Continuous Improvement
Data Services DB Services
Docker Stackato
Cloud Foundry
Kubernetes Service Fabric
PaaS and Container Platform
Mesos
March 12, 2021 30
© 2020 DXC Technology Company. All rights reserved.
Referências
1. https://aws.amazon.com/pt/ecs/
2. https://aws.amazon.com/pt/eks/
3. https://www.eksworkshop.com
4. https://www.udemy.com/course/amazon-eks-
starter-kubernetes-on-aws/
5. https://www.nclouds.com/blog/whats-the-best-
aws-container-management-service-for-you-
amazon-ecs-amazon-eks-or-aws-fargate/
6. https://sensu.io/blog/how-kubernetes-works
March 12, 2021 31
© 2021 DXC Technology Company. All rights reserved.
Questions and
answers
© 2020 DXC Technology Company. All rights reserved.

More Related Content

What's hot

K8s on AWS: Introducing Amazon EKS
K8s on AWS: Introducing Amazon EKSK8s on AWS: Introducing Amazon EKS
K8s on AWS: Introducing Amazon EKSAmazon Web Services
 
Getting Started on Amazon EKS
Getting Started on Amazon EKSGetting Started on Amazon EKS
Getting Started on Amazon EKSMatthew Barlocker
 
Deep Dive on Amazon Elastic Container Service (ECS) and Fargate
Deep Dive on Amazon Elastic Container Service (ECS) and FargateDeep Dive on Amazon Elastic Container Service (ECS) and Fargate
Deep Dive on Amazon Elastic Container Service (ECS) and FargateAmazon Web Services
 
K8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKSK8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKSAmazon Web Services
 
Introducing AWS Elastic Beanstalk
Introducing AWS Elastic BeanstalkIntroducing AWS Elastic Beanstalk
Introducing AWS Elastic BeanstalkAmazon Web Services
 
Kubernetes Networking
Kubernetes NetworkingKubernetes Networking
Kubernetes NetworkingCJ Cullen
 
Openshift Container Platform
Openshift Container PlatformOpenshift Container Platform
Openshift Container PlatformDLT Solutions
 
AWS Networking Fundamentals - SVC304 - Anaheim AWS Summit
AWS Networking Fundamentals - SVC304 - Anaheim AWS SummitAWS Networking Fundamentals - SVC304 - Anaheim AWS Summit
AWS Networking Fundamentals - SVC304 - Anaheim AWS SummitAmazon Web Services
 
Introduction to AWS Cloud Computing | AWS Public Sector Summit 2016
Introduction to AWS Cloud Computing | AWS Public Sector Summit 2016Introduction to AWS Cloud Computing | AWS Public Sector Summit 2016
Introduction to AWS Cloud Computing | AWS Public Sector Summit 2016Amazon Web Services
 
Modernizing applications with Amazon EKS - MAD304 - Santa Clara AWS Summit.pdf
Modernizing applications with Amazon EKS - MAD304 - Santa Clara AWS Summit.pdfModernizing applications with Amazon EKS - MAD304 - Santa Clara AWS Summit.pdf
Modernizing applications with Amazon EKS - MAD304 - Santa Clara AWS Summit.pdfAmazon Web Services
 
Best Practices with Azure Kubernetes Services
Best Practices with Azure Kubernetes ServicesBest Practices with Azure Kubernetes Services
Best Practices with Azure Kubernetes ServicesQAware GmbH
 
Terraform -- Infrastructure as Code
Terraform -- Infrastructure as CodeTerraform -- Infrastructure as Code
Terraform -- Infrastructure as CodeMartin Schütte
 
AWS Summit Seoul 2023 | AWS에서 OpenTelemetry 기반의 애플리케이션 Observability 구축/활용하기
AWS Summit Seoul 2023 | AWS에서 OpenTelemetry 기반의 애플리케이션 Observability 구축/활용하기AWS Summit Seoul 2023 | AWS에서 OpenTelemetry 기반의 애플리케이션 Observability 구축/활용하기
AWS Summit Seoul 2023 | AWS에서 OpenTelemetry 기반의 애플리케이션 Observability 구축/활용하기Amazon Web Services Korea
 

What's hot (20)

K8s on AWS: Introducing Amazon EKS
K8s on AWS: Introducing Amazon EKSK8s on AWS: Introducing Amazon EKS
K8s on AWS: Introducing Amazon EKS
 
Cost Optimisation on AWS
Cost Optimisation on AWSCost Optimisation on AWS
Cost Optimisation on AWS
 
Getting Started on Amazon EKS
Getting Started on Amazon EKSGetting Started on Amazon EKS
Getting Started on Amazon EKS
 
Deep Dive on Amazon Elastic Container Service (ECS) and Fargate
Deep Dive on Amazon Elastic Container Service (ECS) and FargateDeep Dive on Amazon Elastic Container Service (ECS) and Fargate
Deep Dive on Amazon Elastic Container Service (ECS) and Fargate
 
EKS Workshop
 EKS Workshop EKS Workshop
EKS Workshop
 
K8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKSK8s on AWS - Introducing Amazon EKS
K8s on AWS - Introducing Amazon EKS
 
AWS Containers Day.pdf
AWS Containers Day.pdfAWS Containers Day.pdf
AWS Containers Day.pdf
 
Introducing AWS Elastic Beanstalk
Introducing AWS Elastic BeanstalkIntroducing AWS Elastic Beanstalk
Introducing AWS Elastic Beanstalk
 
infrastructure as code
infrastructure as codeinfrastructure as code
infrastructure as code
 
AWS Direct Connect
AWS Direct ConnectAWS Direct Connect
AWS Direct Connect
 
Deep Dive - CI/CD on AWS
Deep Dive - CI/CD on AWSDeep Dive - CI/CD on AWS
Deep Dive - CI/CD on AWS
 
Kubernetes Networking
Kubernetes NetworkingKubernetes Networking
Kubernetes Networking
 
Openshift Container Platform
Openshift Container PlatformOpenshift Container Platform
Openshift Container Platform
 
AWS Networking Fundamentals - SVC304 - Anaheim AWS Summit
AWS Networking Fundamentals - SVC304 - Anaheim AWS SummitAWS Networking Fundamentals - SVC304 - Anaheim AWS Summit
AWS Networking Fundamentals - SVC304 - Anaheim AWS Summit
 
Introduction to AWS Cloud Computing | AWS Public Sector Summit 2016
Introduction to AWS Cloud Computing | AWS Public Sector Summit 2016Introduction to AWS Cloud Computing | AWS Public Sector Summit 2016
Introduction to AWS Cloud Computing | AWS Public Sector Summit 2016
 
Modernizing applications with Amazon EKS - MAD304 - Santa Clara AWS Summit.pdf
Modernizing applications with Amazon EKS - MAD304 - Santa Clara AWS Summit.pdfModernizing applications with Amazon EKS - MAD304 - Santa Clara AWS Summit.pdf
Modernizing applications with Amazon EKS - MAD304 - Santa Clara AWS Summit.pdf
 
Best Practices with Azure Kubernetes Services
Best Practices with Azure Kubernetes ServicesBest Practices with Azure Kubernetes Services
Best Practices with Azure Kubernetes Services
 
Terraform -- Infrastructure as Code
Terraform -- Infrastructure as CodeTerraform -- Infrastructure as Code
Terraform -- Infrastructure as Code
 
Docker Kubernetes Istio
Docker Kubernetes IstioDocker Kubernetes Istio
Docker Kubernetes Istio
 
AWS Summit Seoul 2023 | AWS에서 OpenTelemetry 기반의 애플리케이션 Observability 구축/활용하기
AWS Summit Seoul 2023 | AWS에서 OpenTelemetry 기반의 애플리케이션 Observability 구축/활용하기AWS Summit Seoul 2023 | AWS에서 OpenTelemetry 기반의 애플리케이션 Observability 구축/활용하기
AWS Summit Seoul 2023 | AWS에서 OpenTelemetry 기반의 애플리케이션 Observability 구축/활용하기
 

Similar to AWS ECS vs EKS

modernize-applications-with-microservices-using-amazon-eks-ra.pdf
modernize-applications-with-microservices-using-amazon-eks-ra.pdfmodernize-applications-with-microservices-using-amazon-eks-ra.pdf
modernize-applications-with-microservices-using-amazon-eks-ra.pdfQezs
 
Getting Started with Amazon EKS (Managed Kubernetes)
Getting Started with Amazon EKS (Managed Kubernetes)Getting Started with Amazon EKS (Managed Kubernetes)
Getting Started with Amazon EKS (Managed Kubernetes)Tanya Seno
 
Running containerized application in AWS ECS
Running containerized application in AWS ECSRunning containerized application in AWS ECS
Running containerized application in AWS ECSDevOps Indonesia
 
Wi t containerizemicroservices
Wi t containerizemicroservicesWi t containerizemicroservices
Wi t containerizemicroservicesDipali Kulshrestha
 
Kubernetes-Fundamentals.pptx
Kubernetes-Fundamentals.pptxKubernetes-Fundamentals.pptx
Kubernetes-Fundamentals.pptxsatish642065
 
Kubernetes on on on on on on on on on on on on on on Azure Deck.pptx
Kubernetes on on on on on on on on on on on on on on Azure Deck.pptxKubernetes on on on on on on on on on on on on on on Azure Deck.pptx
Kubernetes on on on on on on on on on on on on on on Azure Deck.pptxHectorSebastianMendo
 
Running containers in AWS
Running containers in AWSRunning containers in AWS
Running containers in AWSAndrewMay59
 
State of the Union: Containers on AWS
State of the Union: Containers on AWSState of the Union: Containers on AWS
State of the Union: Containers on AWSAmazon Web Services
 
AWS Connect 2017 - Container (feat. AWS)
AWS Connect 2017 -  Container (feat. AWS)AWS Connect 2017 -  Container (feat. AWS)
AWS Connect 2017 - Container (feat. AWS)smalltown
 
aks_training_document_Azure_kuberne.pptx
aks_training_document_Azure_kuberne.pptxaks_training_document_Azure_kuberne.pptx
aks_training_document_Azure_kuberne.pptxWaseemShare
 
AWS ECS Meetup Talentica
AWS ECS Meetup TalenticaAWS ECS Meetup Talentica
AWS ECS Meetup TalenticaAnshul Patel
 
From Docker Straight to AWS
From Docker Straight to AWSFrom Docker Straight to AWS
From Docker Straight to AWSDevOps.com
 
[AWS Dev Day] 앱 현대화 | DevOps 개발자가 되기 위한 쿠버네티스 핵심 활용 예제 알아보기 - 정영준 AWS 솔루션즈 아키...
[AWS Dev Day] 앱 현대화 | DevOps 개발자가 되기 위한 쿠버네티스 핵심 활용 예제 알아보기 - 정영준 AWS 솔루션즈 아키...[AWS Dev Day] 앱 현대화 | DevOps 개발자가 되기 위한 쿠버네티스 핵심 활용 예제 알아보기 - 정영준 AWS 솔루션즈 아키...
[AWS Dev Day] 앱 현대화 | DevOps 개발자가 되기 위한 쿠버네티스 핵심 활용 예제 알아보기 - 정영준 AWS 솔루션즈 아키...Amazon Web Services Korea
 
Ford's AWS Service Update - March 2020 (Richmond AWS User Group)
Ford's AWS Service Update - March 2020 (Richmond AWS User Group)Ford's AWS Service Update - March 2020 (Richmond AWS User Group)
Ford's AWS Service Update - March 2020 (Richmond AWS User Group)Ford Prior
 
Kubernetes On AWS | AWS Kubernetes Tutorial | AWS EKS Tutorial | AWS Training...
Kubernetes On AWS | AWS Kubernetes Tutorial | AWS EKS Tutorial | AWS Training...Kubernetes On AWS | AWS Kubernetes Tutorial | AWS EKS Tutorial | AWS Training...
Kubernetes On AWS | AWS Kubernetes Tutorial | AWS EKS Tutorial | AWS Training...Edureka!
 
Running kubernetes with amazon eks
Running kubernetes with amazon eksRunning kubernetes with amazon eks
Running kubernetes with amazon eksyanaisama
 
AWS re:Invent 2016: Introduction to Container Management on AWS (CON303)
AWS re:Invent 2016: Introduction to Container Management on AWS (CON303)AWS re:Invent 2016: Introduction to Container Management on AWS (CON303)
AWS re:Invent 2016: Introduction to Container Management on AWS (CON303)Amazon Web Services
 
Aws + kubernetes = ❤︎
Aws + kubernetes = ❤︎Aws + kubernetes = ❤︎
Aws + kubernetes = ❤︎Anthony Stanton
 

Similar to AWS ECS vs EKS (20)

modernize-applications-with-microservices-using-amazon-eks-ra.pdf
modernize-applications-with-microservices-using-amazon-eks-ra.pdfmodernize-applications-with-microservices-using-amazon-eks-ra.pdf
modernize-applications-with-microservices-using-amazon-eks-ra.pdf
 
Getting Started with Amazon EKS (Managed Kubernetes)
Getting Started with Amazon EKS (Managed Kubernetes)Getting Started with Amazon EKS (Managed Kubernetes)
Getting Started with Amazon EKS (Managed Kubernetes)
 
Running containerized application in AWS ECS
Running containerized application in AWS ECSRunning containerized application in AWS ECS
Running containerized application in AWS ECS
 
Wi t containerizemicroservices
Wi t containerizemicroservicesWi t containerizemicroservices
Wi t containerizemicroservices
 
Kubernetes-Fundamentals.pptx
Kubernetes-Fundamentals.pptxKubernetes-Fundamentals.pptx
Kubernetes-Fundamentals.pptx
 
Kubernetes on on on on on on on on on on on on on on Azure Deck.pptx
Kubernetes on on on on on on on on on on on on on on Azure Deck.pptxKubernetes on on on on on on on on on on on on on on Azure Deck.pptx
Kubernetes on on on on on on on on on on on on on on Azure Deck.pptx
 
Running containers in AWS
Running containers in AWSRunning containers in AWS
Running containers in AWS
 
State of the Union: Containers on AWS
State of the Union: Containers on AWSState of the Union: Containers on AWS
State of the Union: Containers on AWS
 
Containers on AWS
Containers on AWSContainers on AWS
Containers on AWS
 
AWS Connect 2017 - Container (feat. AWS)
AWS Connect 2017 -  Container (feat. AWS)AWS Connect 2017 -  Container (feat. AWS)
AWS Connect 2017 - Container (feat. AWS)
 
aks_training_document_Azure_kuberne.pptx
aks_training_document_Azure_kuberne.pptxaks_training_document_Azure_kuberne.pptx
aks_training_document_Azure_kuberne.pptx
 
AWS ECS Meetup Talentica
AWS ECS Meetup TalenticaAWS ECS Meetup Talentica
AWS ECS Meetup Talentica
 
From Docker Straight to AWS
From Docker Straight to AWSFrom Docker Straight to AWS
From Docker Straight to AWS
 
[AWS Dev Day] 앱 현대화 | DevOps 개발자가 되기 위한 쿠버네티스 핵심 활용 예제 알아보기 - 정영준 AWS 솔루션즈 아키...
[AWS Dev Day] 앱 현대화 | DevOps 개발자가 되기 위한 쿠버네티스 핵심 활용 예제 알아보기 - 정영준 AWS 솔루션즈 아키...[AWS Dev Day] 앱 현대화 | DevOps 개발자가 되기 위한 쿠버네티스 핵심 활용 예제 알아보기 - 정영준 AWS 솔루션즈 아키...
[AWS Dev Day] 앱 현대화 | DevOps 개발자가 되기 위한 쿠버네티스 핵심 활용 예제 알아보기 - 정영준 AWS 솔루션즈 아키...
 
Ford's AWS Service Update - March 2020 (Richmond AWS User Group)
Ford's AWS Service Update - March 2020 (Richmond AWS User Group)Ford's AWS Service Update - March 2020 (Richmond AWS User Group)
Ford's AWS Service Update - March 2020 (Richmond AWS User Group)
 
Kubernetes On AWS | AWS Kubernetes Tutorial | AWS EKS Tutorial | AWS Training...
Kubernetes On AWS | AWS Kubernetes Tutorial | AWS EKS Tutorial | AWS Training...Kubernetes On AWS | AWS Kubernetes Tutorial | AWS EKS Tutorial | AWS Training...
Kubernetes On AWS | AWS Kubernetes Tutorial | AWS EKS Tutorial | AWS Training...
 
Running kubernetes with amazon eks
Running kubernetes with amazon eksRunning kubernetes with amazon eks
Running kubernetes with amazon eks
 
Advanced Container Security
Advanced Container Security Advanced Container Security
Advanced Container Security
 
AWS re:Invent 2016: Introduction to Container Management on AWS (CON303)
AWS re:Invent 2016: Introduction to Container Management on AWS (CON303)AWS re:Invent 2016: Introduction to Container Management on AWS (CON303)
AWS re:Invent 2016: Introduction to Container Management on AWS (CON303)
 
Aws + kubernetes = ❤︎
Aws + kubernetes = ❤︎Aws + kubernetes = ❤︎
Aws + kubernetes = ❤︎
 

More from Norberto Enomoto

Workshop Azure DevOps | Docker | Azure Kubernetes Services
Workshop Azure DevOps | Docker | Azure Kubernetes ServicesWorkshop Azure DevOps | Docker | Azure Kubernetes Services
Workshop Azure DevOps | Docker | Azure Kubernetes ServicesNorberto Enomoto
 
Workshop Azure DevOps Repos
Workshop Azure DevOps ReposWorkshop Azure DevOps Repos
Workshop Azure DevOps ReposNorberto Enomoto
 
Criação de uma API RESTful Multitenat em Spring Boot e Oracle database utiliz...
Criação de uma API RESTful Multitenat em Spring Boot e Oracle database utiliz...Criação de uma API RESTful Multitenat em Spring Boot e Oracle database utiliz...
Criação de uma API RESTful Multitenat em Spring Boot e Oracle database utiliz...Norberto Enomoto
 
Arquitetura de Microserviços
Arquitetura de MicroserviçosArquitetura de Microserviços
Arquitetura de MicroserviçosNorberto Enomoto
 
Protocolo MQTT: Message Queuing Telemetry Transport
Protocolo MQTT: Message Queuing Telemetry TransportProtocolo MQTT: Message Queuing Telemetry Transport
Protocolo MQTT: Message Queuing Telemetry TransportNorberto Enomoto
 
Arquitetura de Microserviços
Arquitetura de MicroserviçosArquitetura de Microserviços
Arquitetura de MicroserviçosNorberto Enomoto
 
Arquitetura de Microservicos
Arquitetura de MicroservicosArquitetura de Microservicos
Arquitetura de MicroservicosNorberto Enomoto
 
HP Communications and Media | Solutions IoT Platform
HP Communications and Media | Solutions IoT Platform HP Communications and Media | Solutions IoT Platform
HP Communications and Media | Solutions IoT Platform Norberto Enomoto
 
MQTT: Message Queuing Telemetry Transport (IoT)
MQTT: Message Queuing Telemetry Transport (IoT)MQTT: Message Queuing Telemetry Transport (IoT)
MQTT: Message Queuing Telemetry Transport (IoT)Norberto Enomoto
 
Overview Governança SOA - HP Brazil
Overview Governança SOA - HP BrazilOverview Governança SOA - HP Brazil
Overview Governança SOA - HP BrazilNorberto Enomoto
 
Oracle Service Bus - HP Brazil
Oracle Service Bus - HP BrazilOracle Service Bus - HP Brazil
Oracle Service Bus - HP BrazilNorberto Enomoto
 

More from Norberto Enomoto (14)

Resilience4j
Resilience4jResilience4j
Resilience4j
 
Azure Pipeline
Azure PipelineAzure Pipeline
Azure Pipeline
 
Workshop Azure DevOps | Docker | Azure Kubernetes Services
Workshop Azure DevOps | Docker | Azure Kubernetes ServicesWorkshop Azure DevOps | Docker | Azure Kubernetes Services
Workshop Azure DevOps | Docker | Azure Kubernetes Services
 
Workshop Azure DevOps Repos
Workshop Azure DevOps ReposWorkshop Azure DevOps Repos
Workshop Azure DevOps Repos
 
Criação de uma API RESTful Multitenat em Spring Boot e Oracle database utiliz...
Criação de uma API RESTful Multitenat em Spring Boot e Oracle database utiliz...Criação de uma API RESTful Multitenat em Spring Boot e Oracle database utiliz...
Criação de uma API RESTful Multitenat em Spring Boot e Oracle database utiliz...
 
Arquitetura de Microserviços
Arquitetura de MicroserviçosArquitetura de Microserviços
Arquitetura de Microserviços
 
Protocolo MQTT: Message Queuing Telemetry Transport
Protocolo MQTT: Message Queuing Telemetry TransportProtocolo MQTT: Message Queuing Telemetry Transport
Protocolo MQTT: Message Queuing Telemetry Transport
 
Arquitetura de Microserviços
Arquitetura de MicroserviçosArquitetura de Microserviços
Arquitetura de Microserviços
 
Arquitetura de Microservicos
Arquitetura de MicroservicosArquitetura de Microservicos
Arquitetura de Microservicos
 
HP Communications and Media | Solutions IoT Platform
HP Communications and Media | Solutions IoT Platform HP Communications and Media | Solutions IoT Platform
HP Communications and Media | Solutions IoT Platform
 
Web Services
Web ServicesWeb Services
Web Services
 
MQTT: Message Queuing Telemetry Transport (IoT)
MQTT: Message Queuing Telemetry Transport (IoT)MQTT: Message Queuing Telemetry Transport (IoT)
MQTT: Message Queuing Telemetry Transport (IoT)
 
Overview Governança SOA - HP Brazil
Overview Governança SOA - HP BrazilOverview Governança SOA - HP Brazil
Overview Governança SOA - HP Brazil
 
Oracle Service Bus - HP Brazil
Oracle Service Bus - HP BrazilOracle Service Bus - HP Brazil
Oracle Service Bus - HP Brazil
 

Recently uploaded

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsNanddeep Nachan
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDropbox
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfOverkill Security
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...apidays
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Zilliz
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfsudhanshuwaghmare1
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobeapidays
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)wesley chun
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...apidays
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc
 

Recently uploaded (20)

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
DBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor PresentationDBX First Quarter 2024 Investor Presentation
DBX First Quarter 2024 Investor Presentation
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, AdobeApidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
Apidays New York 2024 - Scaling API-first by Ian Reasor and Radu Cotescu, Adobe
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 

AWS ECS vs EKS

  • 1. © 2021 DXC Technology Company. All rights reserved. AWS ECS vs EKS
  • 2. March 12, 2021 2 © 2020 DXC Technology Company. All rights reserved. Agenda Tópico Microservices Architecture Orchestrating your containers Container Orchestration Tools AWS ECS vs EKS ECS Kubernetes Architecture – k8s EKS
  • 3. March 12, 2021 3 © 2021 DXC Technology Company. All rights reserved. Microservices Architecture
  • 4. March 12, 2021 4 © 2020 DXC Technology Company. All rights reserved. Microservices Architeture
  • 5. March 12, 2021 5 © 2021 DXC Technology Company. All rights reserved. Orchestrating your containers
  • 6. March 12, 2021 6 © 2020 DXC Technology Company. All rights reserved. Orchestrating your containers
  • 7. March 12, 2021 7 © 2021 DXC Technology Company. All rights reserved. Container Orchestration Tools
  • 8. March 12, 2021 8 © 2020 DXC Technology Company. All rights reserved. Container Orchestration Tools Managing, scaling and deploying containers
  • 9. March 12, 2021 9 © 2021 DXC Technology Company. All rights reserved. AWS ECS vs EKS
  • 10. March 12, 2021 10 © 2020 DXC Technology Company. All rights reserved. EKS vs ECS Image registry Amazon Elastic Container Registry (Amazon ECR) Orchestration Amazon Elastic Container Service (Amazon ECS) Amazon Elastic Kubernetes Service (Amazon EKS) Compute Amazon Elastic Compute Cloud (Amazon EC2) AWS Fargate
  • 11. March 12, 2021 11 © 2021 DXC Technology Company. All rights reserved. ECS
  • 12. March 12, 2021 12 © 2020 DXC Technology Company. All rights reserved. ECS Fully managed container orchestration platform Amazon ECR Amazon ECS scales your application and manages your containers for availability Build images and store using ECR or any other repository Amazon ECS Define your application Manage containers Select container images and resources needed for application Amazon EC2 AWS Fargate
  • 13. March 12, 2021 13 © 2020 DXC Technology Company. All rights reserved. ECS ECS cluster EC2 instance EC2 instance EC2 instance Amazon CloudWatch IAM Amazon EC2 Auto Scaling Containers Containers Containers AWS Cloud Amazon ECS
  • 14. March 12, 2021 14 © 2020 DXC Technology Company. All rights reserved. ECS internet Elastic Load Balancing Amazon EC2 instance Task Task Amazon ECS container agent Container Container Amazon EC2 instance Task Task Amazon ECS container agent Container Container Amazon EC2 instance Task Task Containers Container Amazon ECS container agent Amazon ECS • Agent communication service • API • Cluster management engine • Key and value store Elastic Load Balancing
  • 15. March 12, 2021 15 © 2020 DXC Technology Company. All rights reserved. AWS Fargate Advantages
  • 16. March 12, 2021 16 © 2021 DXC Technology Company. All rights reserved. Arquitetura Kubernetes – K8s
  • 17. March 12, 2021 17 © 2020 DXC Technology Company. All rights reserved. Kubernetes – K8s Helps run containers at scale Open sourcecontainer orchestration platform Provides primitives (building blocks)for building modern applications
  • 18. March 12, 2021 18 © 2020 DXC Technology Company. All rights reserved. • API Server: você precisa interagir com o cluster do Kubernetes? Use a API. A API do Kubernetes é a interface do plano de controle. Ela processa solicitações internas e externas. O servidor da API determina se uma solicitação é válida. Se for, ela a processa. É possível acessar a API por meio de chamadas REST, da interface de linha de comando kubectl; • Scheduler: seu cluster está íntegro? Se você precisar de novos containers, onde eles ficarão? Isso é um trabalho para o Scheduler. Ele analisa quais os recursos de que um pod necessita, como CPU e memória. E também avalia integridade do cluster. Depois, ele programa o pod no worker node apropriado. • etcd: o etcd é um banco de dados de armazenamento de chave/valor que contém as informações e dados de configuração sobre o estado do cluster. Ele é distribuído, tolerante a falhas e foi projetado para ser a principal fonte de informações sobre o cluster. • Controller-Manager: um controlador é um loop de controle que observa o estado compartilhado do cluster por meio do API Server e faz alterações na tentativa de mover o estado atual para o estado desejado. Exemplos de controladores que vêm com o Kubernetes hoje são o controlador de replicação, controlador de endpoints, controlador de namespace e controlador de contas de serviço. • kubelet: faz a comunicação com o control plane. O kubelet assegura que os containers estejam em execução em um pod. Quando o controlplane precisa que algo aconteça em um worker node, o kubelet realiza a ação. • kube-proxy: é um proxy que facilita os serviços de rede do Kubernetes. O kube-proxy gerencia as comunicações de rede dentro e fora do cluster. Arquitetura Kubernetes – K8s
  • 19. March 12, 2021 19 © 2021 DXC Technology Company. All rights reserved. EKS
  • 20. March 12, 2021 20 © 2020 DXC Technology Company. All rights reserved. EKS is fully managed Kubernetes Amazon EKS helps customer run Kubernetes. Amazon EKS makes it easy to run Kubernetes on AWS Provision an EKS cluster Amazon EC2 Deploy worker nodes for you EKS cluster Amazon EKS Connect to EKS Run Kubernetes apps
  • 21. March 12, 2021 21 © 2020 DXC Technology Company. All rights reserved. EKS is Kubernetes certifiedconformant • Customers can use existing tooland plugins. • Applications can run on anystandard Kubernetes environment. • Application can be easily migratedto Amazon EKS.
  • 22. March 12, 2021 22 © 2020 DXC Technology Company. All rights reserved. Kubernetes components us-east-1a masters etcd worker nodes Controller manager Cloud controller Scheduler API Server Pod Pod kubelet kube-proxy Pod
  • 23. March 12, 2021 23 © 2020 DXC Technology Company. All rights reserved. Kubectl command line interface masters worker nodes Controller manager Cloud controller Scheduler API Server Pod Pod kubelet kube-proxy Pod kubectl $ kubectl get pods NAME READY STATUS RESTARTS AGE nginx-4293833666-20vr8 1/1 Running 0 2m nginx-4293833666-3gzfw 1/1 Running 0 2m nginx-4293833666-7nBiH 1/1 Running 0 2m
  • 24. March 12, 2021 24 © 2020 DXC Technology Company. All rights reserved. Kubernetes with high availability masters etcd masters etcd masters etcd worker nodes us-east-1a © 2019 Amazon Web Services, Inc. or its Affiliates. All rights reserved. worker nodes us-east-1b worker nodes us-east-1c 148
  • 25. March 12, 2021 25 © 2020 DXC Technology Company. All rights reserved. Amazon EKS architecture etcd etcd etcd VPC API Server Auto Scaling group Etcd Auto Scaling group master nodes master nodes us-east-1c us-east-1b master nodes us-east-1a
  • 26. March 12, 2021 26 © 2020 DXC Technology Company. All rights reserved. EKS – Hibrid Architecture: EC2 and Fargate
  • 27. March 12, 2021 27 © 2020 DXC Technology Company. All rights reserved. Sample architecture: Reliability Public subnet Private subnet Private subnet AWS Cloud Users Amazon EKS Amazon EKS Application Load Balancer Amazon EKS Amazon EKS Amazon RDS Amazon RDS Network Load Balancer Amazon VPC Auto Scaling group Auto Scaling group Availability Zones
  • 28. March 12, 2021 28 © 2020 DXC Technology Company. All rights reserved. Amazon ECS AWS Fargate Amazon EKS Cost Free Amazon service Pay for the amount of memory and vCPU used by the containers Fee of $0.10 per cluster per hour, around $72 per cluster per month Where it runs Only available on AWS Only available on AWS as part of Amazon ECS Runs based on Kubernetes and can be migrated in and out of AWS anytime Ease of use Learning curve of Amazon ECS architecture is lower than that of Amazon EKS Same learning curve as Amazon ECS, but easier to deploy and manage More complex to use and deploy containers. What it supports Supports AWS Management Console, to access and manage AWS through a simple and intuitive web user interface (WUI) Supports AWS Management Console, as ECS does Supports Kubernetes plugins integration Compatibility Windows containers compatibility Limited compatibility with some Amazon services (e.g., you can’t attach persistent storage to Fargate) Every configuration needs to be done using kubectl ECS vs EKS vs Fargate
  • 29. March 12, 2021 29 © 2020 DXC Technology Company. All rights reserved. Microservice | API and Container Based Management Strategy Container Presentation Layer Application Runtime OS Agent API Gateway API Mapping Gateway Account Cloud Platform Microservice A Container Application Runtime OS Agent Microservice B Container Application Runtime OS Agent Application Service Containers Microservice C Container Application Runtime OS Agent Microservice D Container Application Runtime OS Agent DevOps Platform System Monitoring and Dashboards Resource Monitoring Resource Monitoring Data Management & Analytics Visualization API API API API API API Container based deployment Serverless Architecture Unikernels Technologies Continuous Assessment Continuous Assessment 12 Factor Methodology Shift Left Testing Testing Automation Monitoring and Logging Intelligent Alerts Dynamic, Hybrid Infrastructure Security compliance and patching Infrastructure as Code Shift Left Monitoring Continuous Improvement Data Services DB Services Docker Stackato Cloud Foundry Kubernetes Service Fabric PaaS and Container Platform Mesos
  • 30. March 12, 2021 30 © 2020 DXC Technology Company. All rights reserved. Referências 1. https://aws.amazon.com/pt/ecs/ 2. https://aws.amazon.com/pt/eks/ 3. https://www.eksworkshop.com 4. https://www.udemy.com/course/amazon-eks- starter-kubernetes-on-aws/ 5. https://www.nclouds.com/blog/whats-the-best- aws-container-management-service-for-you- amazon-ecs-amazon-eks-or-aws-fargate/ 6. https://sensu.io/blog/how-kubernetes-works
  • 31. March 12, 2021 31 © 2021 DXC Technology Company. All rights reserved. Questions and answers
  • 32. © 2020 DXC Technology Company. All rights reserved.