Skip to content

Commit b581659

Browse files
committed
Review after github render
1 parent 21a94a3 commit b581659

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@ Good for both experiments and production.
77

88
How to use:
99
* Run a Kubernetes cluster, [minikube](https://github.com/kubernetes/minikube) or real.
10-
* To quickly get a small Kafka cluster running, use the `kubectl apply`s below.
11-
* To start using Kafka for real, fork and have a look at [addon](https://github.com/Yolean/kubernetes-kafka/labels/addon)s.
12-
* Join the discussion here in issues and PRs.
10+
* Quickstart: use the `kubectl apply`s below.
11+
* Kafka for real: fork and have a look at [addon](https://github.com/Yolean/kubernetes-kafka/labels/addon)s.
12+
* Join the discussion in issues and PRs.
1313

1414
Why?
15-
See for yourself. No single readable readme can properly introduce both Kafka and Kubernets.
15+
See for yourself, but we think this project gives you better adaptability than [helm](https://github.com/kubernetes/helm) [chart](https://github.com/kubernetes/charts/tree/master/incubator/kafka)s. No single readable readme or template can properly introduce both Kafka and Kubernets.
1616
Back when we read [Newman](http://samnewman.io/books/building_microservices/) we were beginners with both.
17-
Now we read [Kleppmann](http://dataintensive.net/), [Confluent's blog](https://www.confluent.io/blog/) and [SRE](https://landing.google.com/sre/book.html) and enjoy this "Streaming Platform" lock-in :smile:.
17+
Now we've read [Kleppmann](http://dataintensive.net/), [Confluent](https://www.confluent.io/blog/) and [SRE](https://landing.google.com/sre/book.html) and enjoy this "Streaming Platform" lock-in :smile:.
1818

1919
## What you get
2020

2121
Keep an eye on `kubectl --namespace kafka get pods -w`.
2222

23-
[Bootstrap servers](http://kafka.apache.org/documentation/#producerconfigs): `kafka-0.broker.kafka.svc.cluster.local:9092,kafka-1.broker.kafka.svc.cluster.local:9092,kafka-2.broker.kafka.svc.cluster.local:9092`
23+
The goal is to provide [Bootstrap servers](http://kafka.apache.org/documentation/#producerconfigs): `kafka-0.broker.kafka.svc.cluster.local:9092,kafka-1.broker.kafka.svc.cluster.local:9092,kafka-2.broker.kafka.svc.cluster.local:9092`
2424
`
2525

2626
Zookeeper at `zookeeper.kafka.svc.cluster.local:2181`.
@@ -30,15 +30,15 @@ Zookeeper at `zookeeper.kafka.svc.cluster.local:2181`.
3030
The [Kafka book](https://www.confluent.io/resources/kafka-definitive-guide-preview-edition/) recommends that Kafka has its own Zookeeper cluster with at least 5 instances.
3131

3232
```
33-
kubectl create -f ./zookeeper/
33+
kubectl apply -f ./zookeeper/
3434
```
3535

3636
To support automatic migration in the face of availability zone unavailability we mix persistent and ephemeral storage.
3737

3838
## Start Kafka
3939

4040
```
41-
kubectl create -f ./
41+
kubectl apply -f ./
4242
```
4343

4444
You might want to verify in logs that Kafka found its own DNS name(s) correctly. Look for records like:

0 commit comments

Comments
 (0)