Skip to content

Commit

Permalink
README tweak
Browse files Browse the repository at this point in the history
  • Loading branch information
ybyzek committed Jun 14, 2018
1 parent 246d63e commit 41559be
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ This step is optional: to verify that Kafka is working as expected, connect to o
$ kubectl get pods
```

2. Connect to the container `cp-kafka-broker` in a Kafka broker pod. You may need to wait for the Kafka cluster to finish starting up.
2. Connect to the container `cp-kafka-broker` in a Kafka broker pod to produce messages to a Kafka topic. If you specified a different release name, substitute `my-confluent-oss` with whatever you named your release.

```sh
$ kubectl exec -c cp-kafka-broker -it my-confluent-oss-cp-kafka-0 -- /bin/bash /usr/bin/kafka-console-producer --broker-list localhost:9092 --topic test
Expand All @@ -205,7 +205,7 @@ m2

Press Control-d to close the producer session.

3. Consume the messages from the same Kafka topic. Substitute `my-confluent-oss` with whatever you named your release.
3. Consume the messages from the same Kafka topic as above.

```sh
$ kubectl exec -c cp-kafka-broker -it my-confluent-oss-cp-kafka-0 -- /bin/bash /usr/bin/kafka-console-consumer --bootstrap-server localhost:9092 --topic test --from-beginning
Expand Down

0 comments on commit 41559be

Please sign in to comment.