0
0
AWScloud~5 mins

Deploying workloads on EKS in AWS - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is Amazon EKS?
Amazon Elastic Kubernetes Service (EKS) is a managed service that makes it easy to run Kubernetes on AWS without needing to install and operate your own Kubernetes control plane.
Click to reveal answer
beginner
What is a Kubernetes pod in EKS?
A pod is the smallest deployable unit in Kubernetes. It represents one or more containers running together on the same host and sharing resources.
Click to reveal answer
beginner
Why do you need worker nodes in EKS?
Worker nodes are EC2 instances that run your containerized applications. They join the EKS cluster and execute the workloads defined in pods.
Click to reveal answer
intermediate
What is a deployment in Kubernetes on EKS?
A deployment manages a set of identical pods, ensuring the desired number of pods are running and updating them without downtime.
Click to reveal answer
intermediate
How do you update an application running on EKS without downtime?
You update the deployment with a new container image version. Kubernetes performs a rolling update, gradually replacing old pods with new ones to avoid downtime.
Click to reveal answer
What does EKS manage for you?
AYour application code
BThe Kubernetes control plane
CYour local development environment
DYour database backups
Which AWS resource runs your containers in an EKS cluster?
AS3 buckets
BLambda functions
CCloudFront distributions
DEC2 worker nodes
What Kubernetes object ensures a specified number of pods are running?
ADeployment
BConfigMap
CService
DIngress
How does Kubernetes update pods to a new version without downtime?
ARolling update replacing pods gradually
BUpdates pods only when manually restarted
CPauses the cluster during update
DDeletes all pods and then creates new ones
Which file format is commonly used to define Kubernetes workloads for EKS?
AXML
BJSON
CYAML
DINI
Explain the process of deploying a containerized application on Amazon EKS.
Think about the steps from cluster setup to running your app.
You got /5 concepts.
    Describe how Kubernetes manages application updates in EKS to avoid downtime.
    Focus on deployment updates and pod lifecycle.
    You got /5 concepts.