KafkaΒΆ
Robusta can report issues and events in your Kubernetes cluster to a Kafka topic.
Configuring the Kafka sinkΒΆ
Add this to your generated_values.yaml
sinksConfig:
- kafka_sink:
name: kafka_sink
kafka_url: "localhost:9092"
topic: "robusta-playbooks"
Add this to your generated_values.yaml if configuring with authentication
sinksConfig:
- kafka_sink:
name: kafka_sink
kafka_url: "localhost:9096"
topic: "robusta-playbooks"
auth:
sasl_mechanism: SCRAM-SHA-512
security_protocol: SASL_SSL
sasl_plain_username: robusta
sasl_plain_password: password
Save the file and run
helm upgrade robusta robusta/robusta --values=generated_values.yaml
Example Output: