Kafka - Kubernetes and Cloud Deployment
Given the following YAML snippet for a Kafka cluster managed by Strimzi:
What will be the number of Kafka broker pods created in the Kubernetes cluster?
apiVersion: kafka.strimzi.io/v1beta2
kind: Kafka
metadata:
name: my-cluster
spec:
kafka:
replicas: 3
storage:
type: ephemeral
zookeeper:
replicas: 3
storage:
type: ephemeral
What will be the number of Kafka broker pods created in the Kubernetes cluster?
