
Gerrit supports a number of pub-sub plugins which can act as alternatives to stream-events. These can often be easier for users to configure than ssh access and have the advantage of providing queueing and delivery guarantees for messages. This change not only adds support for Kafka, but is meant as a template for adding support for other Gerrit pub-sub plugins as well. Change-Id: Ib03d8cb9ef709b625d2717a09125930548c86a22
41 lines
746 B
Plaintext
41 lines
746 B
Plaintext
[statsd]
|
|
# note, use 127.0.0.1 rather than localhost to avoid getting ipv6
|
|
# see: https://github.com/jsocol/pystatsd/issues/61
|
|
server=127.0.0.1
|
|
|
|
[scheduler]
|
|
tenant_config=main.yaml
|
|
|
|
[merger]
|
|
git_dir=/tmp/zuul-test/merger-git
|
|
git_user_email=zuul@example.com
|
|
git_user_name=zuul
|
|
|
|
[web]
|
|
root=http://zuul.example.com
|
|
|
|
[executor]
|
|
git_dir=/tmp/zuul-test/executor-git
|
|
load_multiplier=100
|
|
|
|
[connection gerrit]
|
|
driver=gerrit
|
|
server=review.example.com
|
|
user=jenkins
|
|
sshkey=fake_id_rsa_path
|
|
password=badpassword
|
|
kafka_bootstrap_servers=localhost
|
|
kafka_client_id=zuul
|
|
kafka_group_id=zuul
|
|
kafka_topic=gerrit
|
|
|
|
[connection smtp]
|
|
driver=smtp
|
|
server=localhost
|
|
port=25
|
|
default_from=zuul@example.com
|
|
default_to=you@example.com
|
|
|
|
[database]
|
|
dburi=$MYSQL_FIXTURE_DBURI$
|