Run statusbot from eavesdrop01.opendev.org

This installs statusbot on eavesdrop01.opendev.org.

Otherwise it's just config translation and bringing up the daemon.

Change-Id: I246b2723372594e65bcd1ba90215d6831d4c0c72
This commit is contained in:
Ian Wienand
2021-06-08 15:54:00 +10:00
parent 8a1f6d9764
commit 23fac31c92
11 changed files with 198 additions and 2 deletions

View File

@@ -36,3 +36,9 @@ def test_gerritbot_running(host):
cmd = host.run("docker ps -a")
assert 'gerritbot-docker_gerritbot_1' in cmd.stdout
assert 'Up ' in cmd.stdout
def test_statusbot_running(host):
# Check that the container hasn't stopped
cmd = host.run("docker ps -a")
assert 'statusbot-docker_statusbot_1' in cmd.stdout
assert 'Up ' in cmd.stdout