Skip to content

Instantly share code, notes, and snippets.

View lucasreed's full-sized avatar
🤘

Luke Reed lucasreed

🤘
  • Durham, NC
View GitHub Profile

Kubernetes default component configuration from kubeadm from HEAD

Build from Head April 10, 2018 Commit: 31d22870b2cf0326384fab154a8adf5155ab6975

API Server

/etc/kubernetes/manifests/kube-apiserver.yaml

@ursuad
ursuad / kafka-cheat-sheet.md
Last active March 14, 2024 10:32
Quick command reference for Apache Kafka

Kafka Topics

List existing topics

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

Describe a topic

bin/kafka-topics.sh --zookeeper localhost:2181 --describe --topic mytopic

Purge a topic

bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --config retention.ms=1000

... wait a minute ...