diff options
author | 2018-01-08 16:17:21 +0000 | |
---|---|---|
committer | 2018-01-10 15:18:02 +0000 | |
commit | d4479cd89385b9370b22f5157c654f0551d0dc26 (patch) | |
tree | 452d55a73772a134e3bd53ecfc5511075c2402fc /docker/kafka/start_kafka.sh | |
parent | 3e94f95882d1b566a546059240631358e6460501 (diff) |
docker: remove zookeeper from kafka docker
Remove zookeeper from kafka docker and add ability to specify kafka
broker id and address of zookeeper host.
Change-Id: Ib6f46cf326999dcd1440dc06ab5cf6665ec578ad
Signed-off-by: gordonkelly <gordon.kelly@intel.com>
Diffstat (limited to 'docker/kafka/start_kafka.sh')
-rwxr-xr-x | docker/kafka/start_kafka.sh | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/docker/kafka/start_kafka.sh b/docker/kafka/start_kafka.sh index 41388c46..abde2d13 100755 --- a/docker/kafka/start_kafka.sh +++ b/docker/kafka/start_kafka.sh @@ -13,6 +13,15 @@ # See the License for the specific language governing permissions and # limitations under the License. -zookeeper-server start -kafka_2.11-1.0.0/bin/kafka-server-start.sh kafka_2.11-1.0.0/config/server.properties > kafka_2.11-1.0.0/kafka.log 2>&1 +if [ -n "$broker_id" ] +then + sed -i "s/broker.id=0/broker.id=$broker_id/" \ + kafka_2.11-1.0.0/config/server.properties +fi +if [ -n "$zookeeper_node" ] +then + sed -i "s/localhost:2181/$zookeeper_node:2181/" \ + kafka_2.11-1.0.0/config/server.properties +fi +kafka_2.11-1.0.0/bin/kafka-server-start.sh kafka_2.11-1.0.0/config/server.properties > kafka_2.11-1.0.0/kafka.log 2>&1 |