ECS, Fargate, ECR, EKS Flashcards

1
Q

What is docker?

A

A software development platform used to deploy apps.

Apps are packaged in containers that can run in any OS.

Apps run the same way no matter where they are run.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are Docker use cases?

A

Any microservices architecture.

Lift and shift apps from onpremises to the cloud

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How do you run docker? What can you run in it?

A

You have a server, in which you run a docker agent.

From there you can start docker containers. For example your first docker container may contain a java application. And you could have multiple containers of the same java application.

You could run multiple different apps in different containers in different languages. And you can even run databases in containers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is ECR?

A

Amazon Elastic Container Registry. A private repository to store your Docker images in aws.

There is a public repository option in ECR. The ECR Public Gallery

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is a docker file?

A

A text file you make with the instructions on how to “build” a docker image. This defines how a docker container will look.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What is a docker image?

A

A docker image is a container image. It’s an executable file that we use to create containers in a certain way.

It contains all the code, libraries, files and dependencies for your container app.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a push? What is a pull?

A

A push is when you upload a docker image to a docker repository, like dockerhub or ECR.

A pull is when you get a docker image from a repository like dockerhub or ECR, and you run it to make containers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is to run a docker image?

A

You run a docker image like an executable to get one or more docker containers from it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is docker build?

A

The command for building a docker image from a docker file.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is ECS?

A

Amazons’ own container platform

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is EKS?

A

Amazons’ managed version of Kubernetes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is Fargate?

A

Amazon’s serverless container platform.

Fargate works with both ECS and EKS

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How do you call launching containers on aws?

A

Launching an ECS task or service on an ECS cluster

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What are the EC2 launch types?

A

Fargate, EC2 and External.

It’s what the ECS Cluster is launched with.

In an EC2 launch type for example, the ECS cluster is made of EC2 instances.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Who is an ECS cluster managed by in the EC2 launch type?

A

You have to manage the EC2 instances that make up the ECS cluster.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the ECS agent?

A

The software the EC2 instances that make up the ECS cluster must run.

The ECS agent register the instances in the ECS service and the ECS cluster.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What is fargate launch type?

A

Fargate is a launch type for ECS clusters, but it’s serverless and aws managed.

On fargate you just create task definitions. (Task definitions are the equivalent to docker files).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What is a task definition in ECS?

A

A task definition defines what image the container will use, and the resources it will be given. Similar to docker file.

You can then launch services or tasks with this task definition.

You set it up in the management console, but in reality it’s just a json file.

19
Q

How does ECS fargate launch type scale?

A

You just run tasks for the cpu and ram you need, and fargate scales acordingly. No limit.

20
Q

What do you need an instance profile for in ECS?

A

When using EC2 launch type, you need an instance profile for the instances that are part of the ESC Cluster. This is needed for ECS agent communication, for example:
To pull docker images from ECR when launching tasks.
To allow the ECS agent to make api calls to the ECS service.
To send container logs to cloudwatch.

TLDR:
“EC2 Instance Profile is the IAM Role used by the ECS Agent on the EC2 instance to execute ECS-specific actions such as pulling Docker images from ECR and storing the container logs into CloudWatch Logs.”

21
Q

What is ECS Task Role?

A

ECS Task Role is the IAM Role used by the ECS task itself. Used when your container wants to call other AWS services like S3, SQS, etc.

Task roles are defined in the task definition.

22
Q

What are the options for load balance integrations with ECS?

A

ALB: Most common one.

NLB: Only for high throughput / High performance use cases, or with aws private link.

23
Q

What is the best way to configure data volumes in ECS?

A

With EFS.

By mounting EFS file systems to ECS tasks, all tasks will see the same data from the EFS share. Even tasks from different AZs.

24
Q

How is ASG related to ECS?

A

When creating an ECS cluster of the EC2 launch type, you are requested to create an ASG with an instance type.

This ASG will create instances across all AZs when you launch tasks on ECS.

25
Q

What can you define in the task definition?

A

Fargate, EC2, or External for launch type. (you can use both fargate and EC2)
OS (Linux, Windows)
Task Size (CPU, Memory)
Task Role for the tasks (IAM Role For containers in the tasks to be able to make api calls to other aws service resources)
Task execution role: For the container agent to make api calls
For the container 1: (You can configure more than one different container in a task definition).
Name
Docker image
Port Mappings (Allow the container to use the port of the host as its port)

26
Q

What is task size?

A

CPU and Memory used for the task.

27
Q

What is ECS Auto Scaling?

A

Automatically increase or decrease number of ECS tasks.

It uses the aws service “AWS application auto scaling”.

This is not the same as EC2 launch type auto scaling, which uses an ASG.

28
Q

What can you scale with ECS Auto Scaling?

A

CPU utilization, Memory utilization, and ALB request count per target

28
Q

What’s the key difference to know between Fargate and EC2 launch types?

A

Fargate is easier to set up, since it’s serverless and you don’t have to manage instances.

Also, when using fargate you only have to worry about ECS auto scaling and not any EC2 instance auto scaling groups.

With EC2 type you need to worry about both ECS auto scaling and EC2 auto Scaling group (Cluster Capacity Provider)

29
Q

How do you scale your EC2 instances when using ECS with EC2 launch type?

A

You have 2 options. You could scale the ASG with metrics like cpu utilization.

Or you can use the ECS Cluster Capacity Provider, which is better, because it automatically provisions and scales your EC2 cluster infrastructure as soon as you lack capacity to launch new ECS tasks.

30
Q

How can you integrate ECS with EventBridge? Example

A

Let’s say we have an ECS Cluster, and an S3 bucket.

You can have S3 notify EventBridge when an object is uploaded to this S3 bucket, and use an EventBridge rule to automatically launch an ECS Task whenever it receives an event from this S3 bucket.

The ECS task with a task role (for access) would then get this s3 object, process it and send the results to dynamodb for example.

This example is an architecture that could be serverless with fargate, and that processes images from your s3 bucket using a docker container.

A similar architecture but simpler, is a rule for scheduling an ECS task creation in eventbridge, for example every one hour. For example to process batches of s3 files hourly.

31
Q

How can you integrate ECS with SQS? Example

A

You can have an ECS cluster with a service that polls an SQS queue and processes them.

You can add ECS auto scaling so that the more messages we have in our SQS queue the more tasks we will have in our ECS Service.

32
Q

How can you integrate ECS with SNS and Event Bridge? Example

A

You could have configured a rule in event bridge that sends an event when an ECS task is exiting, or starting, in your cluster.

You can integrate SNS with eventbridge to send a notification when this event happens, which could have as destination an administrator email.

33
Q

What can you define on ECS Cluster Creation?

A

Name
Infrastructure: Fargate or EC2.

For EC2 you choose:
ASG
Provisioning model: On demand or spot.
Container AMI (Linux or windows)
EC2 instance tipe
EC2 instance role: For the instances to make api calls.
Desired capacity: Min and max for the ASG
key pair
Root EBS volume size
Network Settings (For EC2 only):
VPC (for region you are in)
Subnets for each AZ
security group
Public ip

34
Q

What is an ECS Service? How does it work?

A

A group of 1 or more ECS tasks created following a specific ECS task definition.

This service with its tasks run an application.

The difference in running standalone tasks and running tasks within a service, is that the service scheduler starts a new task if one of its running tasks fails.

You can also optionally run your service behind a load balancer. The load balancer distributes traffic across the tasks that are associated with the service.

35
Q

What is the process to deploying containers in ECS?

A

First create an ecs cluster
Create a task definition
Create a service or task

36
Q

What service backs the ECR Repositories?

37
Q

What are the 2 EKS launch modes?

A

EC2 for Worker Nodes, and Fargate for Serverless instances.

38
Q

How do EKS pods, nodes, and worker nodes relate to each other?

A

Nodes are EC2 instances managed by an ASG managed by EKS.
1 or more Pods run inside a node. ?????

With fargate you don’t use nodes.

39
Q

What is a StorageClass in EKS?

A

It comes from kubernetes. Storage Class is a configuration you make for using data volumes in EKS.

In EKS you can use EBS, EFS, and FSx for lustre or netapp as k8s data volumes.

40
Q

What is AWS App Runner?

A

A fully managed service for deploying web apps and apis at scale

No infrastructure knowledge is required. Anyone can use it.

41
Q

How do you configure App Runner?

A

You give a container image or source code to the service.
You configure resource settings: How much cpu, memory, auto scaling, health checks.

Only with this information, app runner will start building and creating the web app.

42
Q

You have an application hosted on an ECS Cluster (EC2 Launch Type) where you want your ECS tasks to upload files to an S3 bucket. Which IAM Role for your ECS Tasks should you modify?

EC2 instance profile
EC2 Task Role

A

EC2 Task Role.

You have an application hosted on an ECS Cluster (EC2 Launch Type) where you want your ECS tasks to upload files to an S3 bucket. Which IAM Role for your ECS Tasks should you modify?

43
Q

Which of these 2 IAM roles is used for container app communication with other AWS Services, when using EC2 launch type?

Task Role
Instance Role