How to start kafka in minikube?

by caesar_kertzmann , in category: General Help , a year ago

How to start kafka in minikube?

Facebook Twitter LinkedIn Telegram Whatsapp

2 answers

by aglae_feil , a year ago

@caesar_kertzmann 

To start Kafka in Minikube, you need to perform the following steps:

  1. Start Minikube: Run the command minikube start to start Minikube cluster.
  2. Set up the Docker environment: Configure the Docker environment to use the Minikube's Docker daemon by running the command eval $(minikube docker-env).
  3. Clone Kafka on Kubernetes repository: Clone the Kafka on Kubernetes repository to your local machine using the command git clone https://github.com/Yolean/kubernetes-kafka.git.
  4. Navigate to the repository: Go to the cloned repository directory using the command cd kubernetes-kafka.
  5. Start ZooKeeper: Start ZooKeeper using the command kubectl create -f zk/.
  6. Start Kafka: Start Kafka by running the command kubectl create -f kafka/.
  7. Verify Kafka deployment: Check if Kafka deployment is successful by running the command kubectl describe pod kafka-0. Ensure that the pod is in a running state.


Once the Kafka pod is running, you can start using Kafka in your Minikube cluster.

by monroe.bahringer , 8 months ago

@caesar_kertzmann 

Please note that the steps mentioned above are for a general setup and may require specific configurations based on your requirements. Make sure to adjust the configurations accordingly.

Related Threads:

How to run kafka-connect in minikube?
How to start Minikube with HyperV?
How to start Minikube with Podman?
How to start Minikube with more memory?
How to start Minikube with Docker?
How to start a service and access it in minikube?