Skip to content
Snippets Groups Projects
Commit b0376512 authored by Sören Henning's avatar Sören Henning
Browse files

Merge branch 'issue-33-doc-kafka-client' into 'master'

Add documentation on how to start Kafka client

Closes #33

See merge request !14
parents 61239895 8a4ad385
No related branches found
No related tags found
1 merge request!14Add documentation on how to start Kafka client
Pipeline #507 passed with warnings
......@@ -95,7 +95,15 @@ kubectl apply -f infrastructure/kafka/service-monitor.yaml
##### Other options for Kafka
Other Kafka deployments, for example, using Strimzi, should work in similiar way.
Other Kafka deployments, for example, using Strimzi, should work in a similar way.
#### A Kafka Client Pod
A permanently running pod used for Kafka configuration is started via:
```sh
kubectl apply -f infrastructure/kafka/kafka-client.yaml
```
#### The Kafka Lag Exporter
......
apiVersion: v1
kind: Pod
metadata:
name: kafka-client-2
spec:
containers:
- name: kafka-client
image: confluentinc/cp-enterprise-kafka:5.4.0
command:
- sh
- -c
- "exec tail -f /dev/null"
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment