Skip to content

Commit

Permalink
Update the Kafka things
Browse files Browse the repository at this point in the history
  • Loading branch information
ranjith-ka committed Feb 8, 2024
1 parent 3b7e222 commit ff4d148
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions minikube/kafka/Readme.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,38 @@

# Kafka

## Install steps

`kubectl create -f 'https://strimzi.io/install/latest?namespace=kafka' -n kafka`


### Prodcuer

`kubectl -n kafka run kafka-producer -ti --image=quay.io/strimzi/kafka:0.39.0-kafka-3.6.1 --rm=true --restart=Never -- bin/kafka-console-producer.sh --bootstrap-server my-cluster-kafka-bootstrap:9092 --topic my-topic`


### Consume the Topic

`kubectl -n kafka run kafka-consumer -ti --image=quay.io/strimzi/kafka:0.39.0-kafka-3.6.1 --rm=true --restart=Never -- bin/kafka-console-consumer.sh --bootstrap-server my-cluster-kafka-bootstrap:9092 --topic my-topic --from-beginning`


### Features

Docker images for KAFKA

Helm Charts sources for KAFKA

Kafka UI

ACL

SSL & TLS

Monitoring

Autoscaling - Broker & Topics

Mirror making

Bridge configuration

Schema Registry

kafka connect

0 comments on commit ff4d148

Please sign in to comment.