We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Entrypoint /usr/local/bin/zookeeperStart.sh of pravega/zookeeper:0.2.5 has following logic:
/usr/local/bin/zookeeperStart.sh
pravega/zookeeper:0.2.5
if [[ "$WRITE_CONFIGURATION" == true ]]; then . . . else echo Writing configuration gleaned from zookeeper ensemble echo "$CONFIG" | grep -v "^version="> $DYNCONFIG fi fi
But $CONFIG is not set.
$CONFIG
After changed to following, it works:
if [[ "$WRITE_CONFIGURATION" == true ]]; then . . . else echo Writing configuration gleaned from zookeeper ensemble java -jar /root/zu.jar get-all ${DOMAIN}:${CLIENT_PORT} | grep -v "^version=" > $DYNCONFIG fi fi
The text was updated successfully, but these errors were encountered:
Fixed by #120
Sorry, something went wrong.
pbelgundi
No branches or pull requests
Entrypoint
/usr/local/bin/zookeeperStart.sh
ofpravega/zookeeper:0.2.5
has following logic:But
$CONFIG
is not set.After changed to following, it works:
The text was updated successfully, but these errors were encountered: