Kafka - Kubernetes and Cloud Deployment
You want to deploy Kafka with 3 brokers and customize the storage size to 50Gi using Helm. Which command correctly achieves this?
replicaCount=3 sets 3 Kafka brokers.persistence.size to define storage size per broker.--set flags or comma-separated values are valid, but helm install kafka bitnami/kafka --set replicaCount=3 --set persistence.size=50Gi uses clear separate flags.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions