Bird
0
0

You run this Helm upgrade command:

medium📝 Debug Q14 of 15
Kafka - Kubernetes and Cloud Deployment
You run this Helm upgrade command:
helm upgrade kafka bitnami/kafka --set replicaCount=3

But the Kafka deployment still has 2 brokers. What is the likely issue?
AThe Helm chart version is incompatible
BThe Helm release name is incorrect
CKafka does not support scaling brokers via Helm
DThe replicaCount value was not applied due to missing --reuse-values flag
Step-by-Step Solution
Solution:
  1. Step 1: Understand Helm upgrade behavior

    Helm upgrade requires --reuse-values to reuse previous values while applying new --set overrides.
  2. Step 2: Identify why replicaCount didn't change

    Without --reuse-values, the new value may not apply correctly in combination with prior settings.
  3. Final Answer:

    The replicaCount value was not applied due to missing --reuse-values flag -> Option D
  4. Quick Check:

    Missing --reuse-values can block value changes = A [OK]
Quick Trick: Use --reuse-values to keep and update Helm settings on upgrade [OK]
Common Mistakes:
  • Assuming Helm release name is wrong
  • Believing Kafka can't scale brokers
  • Ignoring Helm chart version compatibility

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kafka Quizzes