-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added support for confluent schema-registry (#12)
* Added support for confluent schema-registry - Fixes #9 - Updated CHANGELOG
- Loading branch information
Showing
7 changed files
with
94 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/bash | ||
|
||
NODES='node2 node3 node4' | ||
for node in ${NODES}; do | ||
NODE_ID=`vagrant global-status | grep ${node} | awk '{print $1}'` | ||
vagrant ssh ${NODE_ID} -c "sudo rm -rf /opt/zookeeper" | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
#!/bin/bash | ||
|
||
NODES='node2 node3 node4' | ||
VERSION='4.1.1-2' | ||
for node in ${NODES}; do | ||
NODE_ID=`vagrant global-status | grep ${node} | awk '{print $1}'` | ||
vagrant ssh ${NODE_ID} -c "docker pull confluentinc/cp-zookeeper:4.1.1-2" | ||
vagrant ssh ${NODE_ID} -c "docker pull confluentinc/cp-kafka:4.1.1-2" | ||
vagrant ssh ${NODE_ID} -c "docker pull confluentinc/cp-zookeeper:${VERSION}" | ||
vagrant ssh ${NODE_ID} -c "docker pull confluentinc/cp-kafka:${VERSION}" | ||
if [[ "${node}" =~ "node2" ]]; then | ||
vagrant ssh ${NODE_ID} -c "docker pull confluentinc/cp-schema-registry:${VERSION}" | ||
fi | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters