Connecting to Kafka broker

I'm just playing with kafka event streaming. Following the "Kafka - source example" in the IU library I've tried to connect to a kafka server, but the Kafka connector appears as faulted.
Next my checks:

  • Kafka and Ignition 8.3 are both running as docker containers
  • Both are connected to the same docker bridge network
  • If I execute a bash in each container I can ping the other container
  • If I run netstat in the Kafka container, connection to port 9092 is established and the foreign address is the Ignition container
  • If I run ss -te in the Ignition container I also see that there is an established connection to <kafka_ip>:9092
  • If I run nc <kafka_ip>:9092 in the Ignition container, I can establish a connection
  • My kafka connection in Ignition is configured to connect to
    image
    where kafka-broker is the name of the kafka container - I tried also with the kafka container IP on the docker network, but with no success

All above said, my result is

image

Any suggestion on what to check further?

Thanks in advance, regards