Complete the code to specify the Kafka chart repository URL.
helm repo add kafka [1]The Bitnami Helm chart repository URL is https://charts.bitnami.com/bitnami, which hosts the Kafka charts.
Complete the command to install Kafka using Helm with the release name 'my-kafka'.
helm install my-kafka kafka/[1]The chart name to install Kafka from the Bitnami repo is kafka.
Fix the error in the values override to set the Kafka broker count to 3.
replicaCount: [1]The replicaCount value must be an integer without quotes. Setting it to 3 creates 3 Kafka brokers.
Fill both blanks to configure Kafka to use persistent storage with 10Gi size.
persistence: enabled: [1] size: [2]
To enable persistent storage, set enabled to true and specify the size as 10Gi.
Fill all three blanks to set Kafka's advertised listeners for external access.
externalAccess: enabled: [1] service: type: [2] autoDiscovery: enabled: [3]
To enable external access, set enabled and autoDiscovery.enabled to true, and use LoadBalancer service type.