How to deploy Yolean Kubernetes Kafka?

5/25/2018

repo: yolean/kubernetes-kafka

I'm going to follow the steps to deploy a kafka cluster in the cloud. But I don't quite understand the instruction. Specifically, under /kafka and /zookeeper, do I need to "kubectl create -f" all YAMLs? what do the numerical prefix of each YAML represent? And what order do I need to follow?

-- foxwendy
apache-kafka
kubernetes

1 Answer

5/26/2018

I need to "kubectl create -f" all YAMLs?

If you want a fully installed cluster, yes.

what do the numerical prefix of each YAML represent?

Ordering. For example, configure the broker pods, then install Kafka, then configure Kafka

And in what order I need to follow?

Ascending order. Zookeeper before Kafka

-- OneCricketeer
Source: StackOverflow