Jordan Moore

Results 601 comments of Jordan Moore

Yeah, that won't work. You have to restart Connect process for any plugin to be discovered. You would have to write your own Dockerfile. See https://github.com/confluentinc/cp-docker-images/blob/5.3.1-post/debian/kafka-connect/Dockerfile#L41 for example

Is there a specific reason you need to use host network mode?

@TonyTromp please show a [SSCCE](http://www.sscce.org) of downloading and starting everything. If it didn't start correctly, you'd obviously seen more issues and comments here The error in the first post is...

I'm able to run Schema Registry in nomad. Haven't tried Zookeeper or Kafka But the issues you'll run into is each of the LISTENERS variables between kafka and the registry...

As I've pointed out already localhost/127.0.0.1 is almost **never** the correct address when working with Docker services https://github.com/zhenik-poc/hashicorp-stacks/blob/master/learn/consul-connect/kafka/kafka.hcl#L18-L21 KAFKA_LISTENERS should be 0.0.0.0 Understand what the advertised listeners are https://www.confluent.io/blog/kafka-listeners-explained/ For...

k8s uses the service DNS name. You should be able to use some similar nomad env var to get that information. For debugging purposes, you may want to not use...

Have you tried submitting this ticket to the proper, current schema registry docker repo?

Please refer Readme for correct repo. Your issue is in the base, which is in the kafka images repo https://github.com/confluentinc/cp-docker-images/blob/5.3.3-post/README.md#deprecation-notice

Better to use either - `docker network create ` and `docker run --network= -e KAFKA_ZOOKEEPER_CONNECT=zookeeper:2181` with zookeeper on same network - Docker Compose ([provided in repo](https://github.com/confluentinc/cp-docker-images/blob/5.3.3-post/examples/kafka-single-node/docker-compose.yml))