Question 57 of 499
Cloud Architecture and DesignmediumMultiple ChoiceObjective-mapped

Quick Answer

The correct action is to create a new node pool using a larger instance type, such as m5.xlarge, and migrate the pods. This is because the current nodes are already saturated at 80% CPU utilization during peak hours, and a 50% increase in traffic would push them to 120%, causing severe performance degradation and pod evictions. Scaling up to a larger instance type doubles the available resources per node, providing immediate headroom for the traffic spike without requiring architectural changes. On the CompTIA Cloud+ CV0-004 exam, this scenario tests your understanding of scaling container orchestration clusters under resource pressure, specifically the difference between vertical scaling (scale up) and horizontal scaling (scale out). A common trap is assuming you should add more nodes of the same size, but when existing nodes are already saturated, scaling up is more efficient because it avoids distributing workloads across already strained resources. Memory tip: when nodes are “maxed out,” think “scale up, not out.”

CV0-004 Cloud Architecture and Design Practice Question

This CV0-004 practice question tests your understanding of cloud architecture and design. Read the scenario carefully and evaluate each option against the stated constraints before committing to an answer. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A company uses a cloud provider's container orchestration service (e.g., EKS, AKS, GKE) to run a set of microservices. The current cluster uses three worker nodes, each of size m5.large (2 vCPU, 8 GB RAM). The operations team notices that CPU utilization on the worker nodes averages 80% during peak hours, and some pods are being evicted due to resource pressure. The team wants to ensure that the cluster can handle a 50% increase in traffic without performance degradation. Which action should the cloud architect take?

Question 1mediummultiple choice
Full question →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Create a new node pool using a larger instance type, such as m5.xlarge, and migrate the pods

Option B is correct because the current nodes are already at 80% CPU utilization during peak hours, and a 50% traffic increase would push them to 120% utilization, causing severe performance degradation and pod evictions. Scaling to a larger instance type (m5.xlarge with 4 vCPU, 16 GB RAM) doubles the available resources per node, providing sufficient headroom to absorb the traffic spike without requiring additional nodes or architectural changes. This directly addresses the resource pressure by increasing the capacity per node, which is more efficient than scaling out horizontally when the existing node type is already saturated.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • Configure horizontal pod autoscaling to scale out pods automatically

    Why it's wrong here

    Horizontal pod autoscaling will not help if nodes are already saturated; it may cause more evictions.

  • Create a new node pool using a larger instance type, such as m5.xlarge, and migrate the pods

    Why this is correct

    Larger instances provide more resources per node, addressing the CPU pressure and accommodating traffic increase.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Implement cluster autoscaler to add more nodes of the same type during peak

    Why it's wrong here

    Adding more m5.large nodes could help, but larger nodes may be more cost-efficient for CPU-intensive workloads; however, this is plausible but not the best answer because vertical scaling with larger nodes is often more effective when workloads require more resources per pod.

  • Reduce the CPU and memory requests in the pod specifications to allow more pods per node

    Why it's wrong here

    Reducing requests may lead to performance issues and potential instability under load.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often assume horizontal scaling (adding more nodes or pods) is always the answer, but when the existing node type is already saturated, vertical scaling (larger instance type) is required to provide the necessary per-node capacity to handle the increased load without performance degradation.

Detailed technical explanation

How to think about this question

Under the hood, Kubernetes uses the kubelet to enforce pod resource limits via cgroups, and when node resources are exhausted, the kubelet triggers pod evictions based on Quality of Service (QoS) classes. In this scenario, the 80% CPU utilization indicates that the node's CPU is near saturation, and a 50% traffic increase would likely cause CPU throttling and increased latency, even if HPA or cluster autoscaler is used, because the instance type's compute capacity is the bottleneck. A real-world consideration is that cloud providers like AWS EKS recommend right-sizing node instances to match workload demands, and using larger instances (e.g., m5.xlarge) reduces the number of nodes needed, improving cluster management and reducing inter-node communication overhead.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A practitioner preparing for the CV0-004 exam encounters this exact type of scenario on the job. The correct answer here is not the most general option — it is the best answer for the specific constraint described. Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option. Real exam questions reward reading the full scenario before eliminating options, because the constraint defines which answer fits.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related CV0-004 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free CV0-004 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this CV0-004 question test?

Cloud Architecture and Design — This question tests Cloud Architecture and Design — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Create a new node pool using a larger instance type, such as m5.xlarge, and migrate the pods — Option B is correct because the current nodes are already at 80% CPU utilization during peak hours, and a 50% traffic increase would push them to 120% utilization, causing severe performance degradation and pod evictions. Scaling to a larger instance type (m5.xlarge with 4 vCPU, 16 GB RAM) doubles the available resources per node, providing sufficient headroom to absorb the traffic spike without requiring additional nodes or architectural changes. This directly addresses the resource pressure by increasing the capacity per node, which is more efficient than scaling out horizontally when the existing node type is already saturated.

What should I do if I get this CV0-004 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Last reviewed: Jun 25, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This CV0-004 practice question is part of Courseiva's free CompTIA certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the CV0-004 exam.