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

Add documentation for Kafka client

parent c55da9cc
No related branches found
No related tags found
No related merge requests found
......@@ -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