506a11f9d2
This new ansible role deploys gerritbot with docker-compose on eavesdrop.openstack.org. This way we can run it where the other bots live. Testing is rudimentary for now as we don't really want to connect to a production gerrit and freenode. We check things the best we can. We will want to coordinate deployment of this change with disabling the running service on the gerrit server. Depends-On: https://review.opendev.org/745240 Change-Id: I008992978791ff0a38f92fb4bc529ff643f01dd6
33 lines
432 B
Plaintext
33 lines
432 B
Plaintext
[loggers]
|
|
keys=root,gerrit,gerritbot
|
|
|
|
[handlers]
|
|
keys=console
|
|
|
|
[formatters]
|
|
keys=simple
|
|
|
|
[logger_root]
|
|
level=DEBUG
|
|
handlers=console
|
|
|
|
[logger_gerrit]
|
|
level=DEBUG
|
|
handlers=console
|
|
qualname=gerrit
|
|
|
|
[logger_gerritbot]
|
|
level=DEBUG
|
|
handlers=console
|
|
qualname=gerritbot
|
|
|
|
[handler_console]
|
|
level=INFO
|
|
class=StreamHandler
|
|
formatter=simple
|
|
args=(sys.stdout,)
|
|
|
|
[formatter_simple]
|
|
format=%(asctime)s %(levelname)s %(name)s: %(message)s
|
|
datefmt=
|