Courseiva

Google PCA Practice Question: Managing and Provisioning a Solution Infrastructure

A company runs a stateful workload on GKE that requires at most one pod per node. They want to survive a zonal failure with minimal downtime. The application can be restarted on a new node. Which configuration should they use?

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

Use a StatefulSet with pod anti-affinity required and a regional cluster

A StatefulSet with pod anti-affinity required ensures one pod per node. A regional cluster with nodes in multiple zones allows rescheduling in another zone. A single-zone cluster would not survive a zonal failure. PDB limits disruption but does not handle zone failure.

Answer analysis

Option-by-option breakdown

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

  • Use a StatefulSet with pod anti-affinity required and a regional cluster

    Why this is correct

    StatefulSet provides stable storage and network identity; anti-affinity ensures one pod per node; regional cluster spreads nodes across zones.

  • Use a Deployment with a PodDisruptionBudget set to maxUnavailable=0

    Why it's wrong here

    PDB does not handle zone failure; it only controls voluntary disruptions.

  • Deploy a Deployment with a nodeSelector for one zone

    Why it's wrong here

    A single zone deployment cannot survive zonal failure.

  • Use a DaemonSet with node affinity

    Why it's wrong here

    DaemonSet runs one pod per node, but it's not designed for stateful workloads with persistent volumes.

About these practice questions

One of 955 original PCA practice questions on Courseiva, each with a full explanation and wrong-answer analysis — not exam dumps or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

JA

Written by Johnson Ajibi, MSc IT Security

Senior Network & Security Engineer · founder of Courseiva

This PCA practice question is part of Courseiva's free Google Cloud 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 PCA exam.