You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to run Jikkou within docker image - streamthoughts/jikkou-api-server:main in mac and it is running fine. Now I would like to automate kafka topic creation by passing a config yml file -
My kafka cluster is running locally using localhost:9092.
I am using below yml file to run the topic to be created in kafka cluster -
# Use the base image for Jikkou API Server
FROM streamthoughts/jikkou-api-server:main
COPY kafka-topics.yml /config/kafka-topics.yml
# Default command to apply Kafka topic configurations using Jikkou
CMD ["jikkou", "apply", "--files", "/config/kafka-topics.yml"]
Now I am able to run Jikkou on my machine but could not able to connect to the kafka cluster.
Hi Team,
I am trying to run Jikkou within docker image - streamthoughts/jikkou-api-server:main in mac and it is running fine. Now I would like to automate kafka topic creation by passing a config yml file -
My kafka cluster is running locally using
localhost:9092
.I am using below yml file to run the topic to be created in kafka cluster -
My docker file -
Now I am able to run Jikkou on my machine but could not able to connect to the kafka cluster.
below is my admin config -
I am able to create the same topic using cli command -
Please help me here what I am doing wrong - I am guessing my configuration is wrong or provide me a sample config and docker file.
The text was updated successfully, but these errors were encountered: