Bird
0
0

How can you combine Kubernetes progressive delivery with feature flags to control new functionality rollout?

hard📝 Workflow Q9 of 15
Kubernetes - Advanced Deployment Patterns
How can you combine Kubernetes progressive delivery with feature flags to control new functionality rollout?
ADeploy separate clusters for each feature flag state
BUse feature flags in application code and traffic splitting in Kubernetes
CUse ConfigMaps to store feature flags and ignore traffic splitting
DUse PersistentVolumeClaims to store feature flag states
Step-by-Step Solution
Solution:
  1. Step 1: Understand feature flags and traffic splitting roles

    Feature flags control functionality in code; traffic splitting controls user exposure at Kubernetes level.
  2. Step 2: Combine both for controlled rollout

    Using feature flags with traffic splitting allows gradual exposure of new features safely.
  3. Final Answer:

    Use feature flags in application code and traffic splitting in Kubernetes -> Option B
  4. Quick Check:

    Feature flags + traffic split = controlled rollout [OK]
Quick Trick: Combine feature flags with traffic splitting for control [OK]
Common Mistakes:
  • Ignoring traffic splitting when using feature flags
  • Deploying separate clusters unnecessarily
  • Using storage for feature flag states

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kubernetes Quizzes