0
0
AWScloud~20 mins

EKS cluster creation in AWS - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
EKS Cluster Mastery
Get all challenges correct to earn this badge!
Test your skills under time pressure!
Architecture
intermediate
2:00remaining
EKS Cluster Networking Setup

You want to create an EKS cluster that supports worker nodes in multiple Availability Zones for high availability. Which networking setup is required?

ACreate a VPC with subnets in multiple Availability Zones but disable routing between subnets.
BCreate a VPC with a single subnet in one Availability Zone and assign private IPs only.
CCreate a VPC with subnets in multiple Availability Zones and enable public IP assignment for worker nodes.
DCreate a VPC with subnets in multiple Availability Zones but only use one subnet for worker nodes.
Attempts:
2 left
💡 Hint

Think about how worker nodes communicate and how availability zones affect fault tolerance.

Configuration
intermediate
2:00remaining
IAM Role for EKS Worker Nodes

Which IAM role policy is necessary for EKS worker nodes to join the cluster and communicate with the control plane?

AAmazonEKSClusterPolicy, AmazonEC2ContainerRegistryFullAccess, AmazonVPCFullAccess
BAmazonS3FullAccess, AmazonEC2FullAccess, AmazonEKSClusterPolicy
CAmazonEKSServicePolicy, AmazonEC2FullAccess, AmazonS3ReadOnlyAccess
DAmazonEKSWorkerNodePolicy, AmazonEC2ContainerRegistryReadOnly, AmazonEKS_CNI_Policy
Attempts:
2 left
💡 Hint

Focus on policies that allow nodes to register and pull container images.

security
advanced
2:00remaining
EKS Cluster Endpoint Access Control

You want to restrict access to your EKS cluster API endpoint so only specific IP addresses can connect. Which configuration achieves this?

AEnable public endpoint access and configure the allowed CIDR blocks with the IP addresses.
BEnable private endpoint access only and disable public endpoint access.
CDisable both public and private endpoint access and use a VPN to connect.
DEnable public endpoint access without CIDR restrictions and rely on security groups.
Attempts:
2 left
💡 Hint

Consider how EKS allows IP-based filtering on the API endpoint.

service_behavior
advanced
2:00remaining
EKS Cluster Auto Scaling Behavior

When you enable the Cluster Autoscaler on your EKS cluster, what behavior should you expect when pod resource requests increase?

AThe autoscaler automatically upgrades the cluster control plane to improve performance.
BThe autoscaler adds new nodes to the cluster to meet pod resource demands automatically.
CThe autoscaler stops scheduling new pods until resources free up.
DThe autoscaler deletes existing pods to reduce resource usage.
Attempts:
2 left
💡 Hint

Think about how autoscaling helps with resource shortages.

Best Practice
expert
3:00remaining
EKS Cluster Logging Configuration

You want to enable detailed logging for your EKS cluster to monitor API calls, authentications, and scheduler events. Which logging configuration is correct?

AEnable all control plane logs: API server, audit, authenticator, controller manager, and scheduler logs.
BEnable only API server logs to reduce storage costs.
CEnable worker node logs only, as control plane logs are managed by AWS.
DDisable all logging to improve cluster performance.
Attempts:
2 left
💡 Hint

Consider which logs provide comprehensive cluster activity visibility.