I am trying to configure rest-proxy outside of the docker container and is getting connectivity error.
As mentioned in the READ.me I tried adding the following to kafka-rest.properties
But when I restart the docker image the changes are lost. Does anyone faced this issue?
I am able to configure the kafka-topics ui by placing it with in the network of the other kafka docker instances. But I need to know how is it accessible from outside the network as I need this to configure to dev environments.
cluster set up added like this:
var clusters = [
{
NAME: 'local',
KAFKA_REST: 'http://rest-proxy:8082',
MAX_BYTES: '50000', // Sets the default maximum amount of bytes to fetch from each topic
RECORD_POLL_TIMEOUT: '3000',
COLOR: '#141414', // Optional
DEBUG_LOGS_ENABLED: true
},
{
NAME: 'dev',
KAFKA_REST: 'http://dev-ip:8082',
MAX_BYTES: '50000',
COLOR: 'red',
RECORD_POLL_TIMEOUT: '3000',
DEBUG_LOGS_ENABLED: true
}
];
I am trying to configure rest-proxy outside of the docker container and is getting connectivity error. As mentioned in the READ.me I tried adding the following to kafka-rest.properties
But when I restart the docker image the changes are lost. Does anyone faced this issue?
I am able to configure the kafka-topics ui by placing it with in the network of the other kafka docker instances. But I need to know how is it accessible from outside the network as I need this to configure to dev environments.
cluster set up added like this:
Really appreciate a response. Thanks in advance