Bird
0
0

Which Helm command syntax correctly sets the Kafka broker count to 3 during installation?

easy📝 Syntax Q12 of 15
Kafka - Kubernetes and Cloud Deployment
Which Helm command syntax correctly sets the Kafka broker count to 3 during installation?
Ahelm install kafka bitnami/kafka --set brokerCount=3
Bhelm install kafka bitnami/kafka --set brokers=3
Chelm install kafka bitnami/kafka --set replicaCount=3
Dhelm install kafka bitnami/kafka --set kafka.broker=3
Step-by-Step Solution
Solution:
  1. Step 1: Identify correct Helm parameter for replicas

    Common Helm charts use replicaCount to set number of pods/brokers.
  2. Step 2: Match parameter with Kafka Helm chart

    Bitnami Kafka chart uses replicaCount to define broker count.
  3. Final Answer:

    helm install kafka bitnami/kafka --set replicaCount=3 -> Option C
  4. Quick Check:

    replicaCount sets broker pods = A [OK]
Quick Trick: Use replicaCount to set broker number in Helm [OK]
Common Mistakes:
MISTAKES
  • Using incorrect parameter names like brokers or brokerCount
  • Misplacing dot notation in --set
  • Confusing Helm install syntax

Want More Practice?

15+ quiz questions · All difficulty levels · Free

Free Signup - Practice All Questions
More Kafka Quizzes