Aug 2, 2023

Kafka

Show all topics via Kafka:

./bin/kafka-topics.sh --bootstrap-server=localhost:9092 --list

Show all topics via Zoo:

./bin/kafka-topics.sh --zookeeper localhost:2181 --list

Show details of specific topic:

./bin/kafka-topics.sh --bootstrap-server=localhost:9092 --describe --topic <topic name>

Kubernetes

kubectl installation $ curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl...