Bird
0
0

Which Kubernetes resource is commonly used to store feature flags for an application?

easy📝 Configuration Q12 of 15
Kubernetes - Advanced Deployment Patterns
Which Kubernetes resource is commonly used to store feature flags for an application?
AService
BPod
CConfigMap
DIngress
Step-by-Step Solution
Solution:
  1. Step 1: Identify resource types

    Pods run containers, Services expose them, Ingress manages external access, ConfigMaps store configuration data.
  2. Step 2: Match feature flags storage

    Feature flags are configuration data, so ConfigMaps are the right resource to store them.
  3. Final Answer:

    ConfigMap -> Option C
  4. Quick Check:

    Feature flags stored in ConfigMap [OK]
Quick Trick: ConfigMaps hold config data like feature flags [OK]
Common Mistakes:
  • Choosing Pod instead of ConfigMap
  • Confusing Service or Ingress with config storage
  • Thinking feature flags are stored in Secrets

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes