Bird
0
0

You need to design a shared storage solution for a Kubernetes cluster where multiple pods across different nodes must read and write data simultaneously. Which access mode should you choose and why?

hard📝 Workflow Q15 of 15
Kubernetes - Persistent Storage
You need to design a shared storage solution for a Kubernetes cluster where multiple pods across different nodes must read and write data simultaneously. Which access mode should you choose and why?
AReadWriteMany, because it allows multiple pods on different nodes to read and write simultaneously.
BReadOnlyMany, because it allows multiple pods to write simultaneously.
CReadWriteOnce, because it supports multiple writers on different nodes.
DReadWriteOnce, because it allows multiple pods to read-only mount the volume.
Step-by-Step Solution
Solution:
  1. Step 1: Identify requirement for multiple writers on different nodes

    The requirement is for multiple pods on different nodes to read and write simultaneously.
  2. Step 2: Match access mode to requirement

    ReadWriteMany allows multiple nodes to mount the volume with read-write access at the same time, fulfilling the requirement.
  3. Final Answer:

    ReadWriteMany, because it allows multiple pods on different nodes to read and write simultaneously. -> Option A
  4. Quick Check:

    Shared read-write = ReadWriteMany [OK]
Quick Trick: Multiple writers/readers need ReadWriteMany [OK]
Common Mistakes:
  • Choosing ReadWriteOnce for multi-node writes
  • Confusing ReadOnlyMany as write-capable
  • Misunderstanding access mode capabilities

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes