17e09934db
The following items were missing from an automated zuul install: * A pre-populated known hosts file * The git user/email for creating commits (.gitconfig existed on zuul.o.o, but switch to using zuul's config file instead). Also, make sure that the mergers specify the zuul server as the gearman server address rather than localhost. Change-Id: I47a473f60c4b5b2daaa910aa61cdf6e0c6fe1528
33 lines
718 B
Plaintext
33 lines
718 B
Plaintext
[gearman]
|
|
server=<%= gearman_server %>
|
|
|
|
[gearman_server]
|
|
start=<%= internal_gearman %>
|
|
log_config=/etc/zuul/gearman-logging.conf
|
|
|
|
[gerrit]
|
|
server=<%= gerrit_server %>
|
|
user=<%= gerrit_user %>
|
|
sshkey=/var/lib/zuul/ssh/id_rsa
|
|
|
|
[zuul]
|
|
layout_config=/etc/zuul/layout.yaml
|
|
log_config=/etc/zuul/logging.conf
|
|
state_dir=/var/lib/zuul
|
|
git_dir=/var/lib/zuul/git
|
|
url_pattern=<%= url_pattern %>
|
|
status_url=<%= status_url %>
|
|
job_name_in_report=<%= job_name_in_report %>
|
|
zuul_url=<%= zuul_url %>
|
|
|
|
[merger]
|
|
git_dir=/var/lib/zuul/git
|
|
zuul_url=<%= zuul_url %>
|
|
log_config=/etc/zuul/merger-logging.conf
|
|
<% if git_email != "" -%>
|
|
git_user_email=<%= git_email %>
|
|
<% end -%>
|
|
<% if git_name != "" -%>
|
|
git_user_name=<%= git_name %>
|
|
<% end -%>
|