Merge "Enable srvr, stat and dump commands in the zk cluster"

This commit is contained in:
Zuul 2021-03-16 04:10:11 +00:00 committed by Gerrit Code Review
commit bc94f97de2
3 changed files with 22 additions and 1 deletions

View File

@ -54,3 +54,10 @@
- name: Run docker prune to cleanup unneeded images
shell:
cmd: docker image prune -f
# This is handy to have on the zk cluster for interacting with the 4 letter
# commands.
- name: Install netcat
package:
name: netcat
state: present

View File

@ -22,6 +22,7 @@ autopurge.purgeInterval=6
maxClientCnxns=60
standaloneEnabled=true
admin.enableServer=true
4lw.commands.whitelist=srvr, stat, dump
clientPort=2181
secureClientPort=2281
ssl.keyStore.location=/tls/keys/keystore.pem

View File

@ -22,9 +22,22 @@ def test_id_file(host):
assert myid.content == b'1\n'
def test_zk_listening(host):
zk = host.socket("tcp://0.0.0.0:2281")
zk = host.socket("tcp://0.0.0.0:2181")
assert zk.is_listening
def test_zk_listening_ssl(host):
zk = host.socket("tcp://0.0.0.0:2281")
assert zk.is_listening
def test_l4_commands(host):
cmd = host.run("echo srvr | nc localhost 2181")
assert "Zookeeper version" in cmd.stdout
assert "not executed because it is not in the whitelist" not in cmd.stdout
cmd = host.run("echo stat | nc localhost 2181")
assert "Zookeeper version" in cmd.stdout
assert "not executed because it is not in the whitelist" not in cmd.stdout
cmd = host.run("echo dump | nc localhost 2181")
assert "SessionTracker dump" in cmd.stdout
assert "not executed because it is not in the whitelist" not in cmd.stdout