blob: cdab4b78934c6040296967dd6fab30eaf30727b8 [file] [log] [blame]
James E. Blaircdd00072012-06-08 19:17:28 -07001:title: Zuul
2
3Zuul
4====
5
6Configuration
7-------------
8
9Zuul has three configuration files:
10
11**zuul.conf**
James E. Blair1f4c2bb2013-04-26 08:40:46 -070012 Connection information for Gerrit and Gearman, locations of the
Łukasz Jernaś048acb42014-03-02 18:49:41 +010013 other config files.
James E. Blaircdd00072012-06-08 19:17:28 -070014**layout.yaml**
Łukasz Jernaś048acb42014-03-02 18:49:41 +010015 Project and pipeline configuration -- what Zuul does.
James E. Blaircdd00072012-06-08 19:17:28 -070016**logging.conf**
Łukasz Jernaś048acb42014-03-02 18:49:41 +010017 Python logging config.
James E. Blaircdd00072012-06-08 19:17:28 -070018
19Examples of each of the three files can be found in the etc/ directory
20of the source distribution.
21
James E. Blair6aea36d2012-12-17 13:03:24 -080022.. _zuulconf:
23
James E. Blaircdd00072012-06-08 19:17:28 -070024zuul.conf
25~~~~~~~~~
26
27Zuul will look for ``/etc/zuul/zuul.conf`` or ``~/zuul.conf`` to
28bootstrap its configuration. Alternately, you may specify ``-c
29/path/to/zuul.conf`` on the command line.
30
James E. Blair1f4c2bb2013-04-26 08:40:46 -070031Gerrit and Gearman connection information are each described in a
32section of zuul.conf. The location of the other two configuration
33files (as well as the location of the PID file when running Zuul as a
34server) are specified in a third section.
James E. Blaircdd00072012-06-08 19:17:28 -070035
Clark Boylan9b670902012-09-28 13:47:56 -070036The three sections of this config and their options are documented below.
37You can also find an example zuul.conf file in the git
38`repository
K Jonathan Harker97e457e2013-02-26 13:29:38 -080039<https://github.com/openstack-infra/zuul/blob/master/etc/zuul.conf-sample>`_
Clark Boylan9b670902012-09-28 13:47:56 -070040
James E. Blair1f4c2bb2013-04-26 08:40:46 -070041gearman
Clark Boylan9b670902012-09-28 13:47:56 -070042"""""""
43
44**server**
James E. Blair1f4c2bb2013-04-26 08:40:46 -070045 Hostname or IP address of the Gearman server.
46 ``server=gearman.example.com``
Clark Boylan9b670902012-09-28 13:47:56 -070047
James E. Blair1f4c2bb2013-04-26 08:40:46 -070048**port**
Łukasz Jernaś048acb42014-03-02 18:49:41 +010049 Port on which the Gearman server is listening.
James E. Blair1f4c2bb2013-04-26 08:40:46 -070050 ``port=4730``
Clark Boylan9b670902012-09-28 13:47:56 -070051
James E. Blair77cc7b82013-07-15 13:22:37 -070052gearman_server
53""""""""""""""
54
55**start**
56 Whether to start the internal Gearman server (default: False).
57 ``start=true``
58
59**log_config**
60 Path to log config file for internal Gearman server.
61 ``log_config=/etc/zuul/gearman-logging.yaml``
62
Clark Boylan9b670902012-09-28 13:47:56 -070063gerrit
64""""""
65
66**server**
67 FQDN of Gerrit server.
68 ``server=review.example.com``
69
Akihiro Motokic7d28a72014-03-22 09:21:38 +090070**port**
71 Optional: Gerrit server port.
72 ``port=29418``
73
Antoine Musso27475012012-11-26 09:53:01 +010074**baseurl**
75 Optional: path to Gerrit web interface. Defaults to ``https://<value
76 of server>/``. ``baseurl=https://review.example.com/review_site/``
77
Clark Boylan9b670902012-09-28 13:47:56 -070078**user**
79 User name to use when logging into above server via ssh.
James E. Blair1f4c2bb2013-04-26 08:40:46 -070080 ``user=zuul``
Clark Boylan9b670902012-09-28 13:47:56 -070081
82**sshkey**
83 Path to SSH key to use when logging into above server.
James E. Blair1f4c2bb2013-04-26 08:40:46 -070084 ``sshkey=/home/zuul/.ssh/id_rsa``
Clark Boylan9b670902012-09-28 13:47:56 -070085
86zuul
87""""
88
89**layout_config**
James E. Blair4076e2b2014-01-28 12:42:20 -080090 Path to layout config file. Used by zuul-server only.
Clark Boylan9b670902012-09-28 13:47:56 -070091 ``layout_config=/etc/zuul/layout.yaml``
92
93**log_config**
James E. Blaira4430132014-02-17 08:32:07 -080094 Path to log config file. Used by zuul-server only.
Clark Boylan9b670902012-09-28 13:47:56 -070095 ``log_config=/etc/zuul/logging.yaml``
96
97**pidfile**
James E. Blaira4430132014-02-17 08:32:07 -080098 Path to PID lock file. Used by zuul-server only.
Clark Boylan9b670902012-09-28 13:47:56 -070099 ``pidfile=/var/run/zuul/zuul.pid``
100
101**state_dir**
James E. Blair4076e2b2014-01-28 12:42:20 -0800102 Path to directory that Zuul should save state to. Used by all Zuul
103 commands.
Clark Boylan9b670902012-09-28 13:47:56 -0700104 ``state_dir=/var/lib/zuul``
105
James E. Blair4076e2b2014-01-28 12:42:20 -0800106**report_times**
107 Boolean value (``true`` or ``false``) that determines if Zuul should
108 include elapsed times for each job in the textual report. Used by
109 zuul-server only.
110 ``report_times=true``
111
112**status_url**
113 URL that will be posted in Zuul comments made to Gerrit changes when
114 starting jobs for a change. Used by zuul-server only.
115 ``status_url=https://zuul.example.com/status``
116
Clark Boylane0b4bdb2014-06-03 17:01:25 -0700117**status_expiry**
118 Zuul will cache the status.json file for this many seconds. This is an
119 optional value and ``1`` is used by default.
120 ``status_expiry=1``
121
James E. Blair4076e2b2014-01-28 12:42:20 -0800122**url_pattern**
123 If you are storing build logs external to the system that originally
124 ran jobs and wish to link to those logs when Zuul makes comments on
125 Gerrit changes for completed jobs this setting configures what the
126 URLs for those links should be. Used by zuul-server only.
127 ``http://logs.example.com/{change.number}/{change.patchset}/{pipeline.name}/{job.name}/{build.number}``
128
129**job_name_in_report**
130 Boolean value (``true`` or ``false``) that indicates whether the
131 job name should be included in the report (normally only the URL
132 is included). Defaults to ``false``. Used by zuul-server only.
133 ``job_name_in_report=true``
134
135merger
136""""""
137
Clark Boylan9b670902012-09-28 13:47:56 -0700138**git_dir**
139 Directory that Zuul should clone local git repositories to.
140 ``git_dir=/var/lib/zuul/git``
141
Paul Belangerb67aba12013-05-13 19:22:14 -0400142**git_user_email**
143 Optional: Value to pass to `git config user.email`.
144 ``git_user_email=zuul@example.com``
145
146**git_user_name**
147 Optional: Value to pass to `git config user.name`.
148 ``git_user_name=zuul``
149
Arx Cruzb1b010d2013-10-28 19:49:59 -0200150**zuul_url**
James E. Blair4076e2b2014-01-28 12:42:20 -0800151 URL of this merger's git repos, accessible to test workers. Usually
152 "http://zuul.example.com/p" or "http://zuul-merger01.example.com/p"
153 depending on whether the merger is co-located with the Zuul server.
Arx Cruzb1b010d2013-10-28 19:49:59 -0200154
James E. Blaira4430132014-02-17 08:32:07 -0800155**log_config**
156 Path to log config file for the merger process.
157 ``log_config=/etc/zuul/logging.yaml``
158
159**pidfile**
160 Path to PID lock file for the merger process.
161 ``pidfile=/var/run/zuul-merger/merger.pid``
162
Joshua Hesketh5fea8672013-08-19 17:32:01 +1000163smtp
164""""
165
166**server**
167 SMTP server hostname or address to use.
168 ``server=localhost``
169
Akihiro Motokic7d28a72014-03-22 09:21:38 +0900170**port**
171 Optional: SMTP server port.
172 ``port=25``
173
Joshua Hesketh5fea8672013-08-19 17:32:01 +1000174**default_from**
175 Who the email should appear to be sent from when emailing the report.
176 This can be overridden by individual pipelines.
177 ``default_from=zuul@example.com``
178
179**default_to**
180 Who the report should be emailed to by default.
181 This can be overridden by individual pipelines.
182 ``default_to=you@example.com``
183
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100184.. _swift:
185
186swift
187"""""
188
189To send (optional) swift upload instructions this section must be
Antoine Musso62fa2d42014-06-04 22:55:23 +0200190present. Multiple destinations can be defined in the :ref:`jobs` section
191of the layout.
192
193If you are sending the temp-url-key or fetching the x-storage-url, you
194will need the python-swiftclient module installed.
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100195
Joshua Heskethc4967502014-05-15 06:39:14 -0700196**X-Account-Meta-Temp-Url-Key** (optional)
197 This is the key used to sign the HMAC message. If you do not set a
198 key Zuul will generate one automatically.
199
200**Send-Temp-Url-Key** (optional)
201 Zuul can send the X-Account-Meta-Temp-Url-Key to swift for you if
202 you have set up the appropriate credentials in ``authurl`` below.
203 This isn't necessary if you know and have set your
204 X-Account-Meta-Temp-Url-Key.
Antoine Musso62fa2d42014-06-04 22:55:23 +0200205 If set, Zuul requires the python-swiftclient module.
Joshua Heskethc4967502014-05-15 06:39:14 -0700206 ``default: true``
207
208**X-Storage-Url** (optional)
209 The storage URL is the destination to upload files into. If you do
210 not set this the ``authurl`` credentials are used to fetch the url
Antoine Musso62fa2d42014-06-04 22:55:23 +0200211 from swift and Zuul will requires the python-swiftclient module.
Joshua Heskethc4967502014-05-15 06:39:14 -0700212
213**authurl** (optional)
214 The (keystone) Auth URL for swift.
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100215 ``For example, https://identity.api.rackspacecloud.com/v2.0/``
Joshua Heskethc4967502014-05-15 06:39:14 -0700216 This is required if you have Send-Temp-Url-Key set to ``True`` or
217 if you have not supplied the X-Storage-Url.
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100218
219Any of the `swiftclient connection parameters`_ can also be defined
220here by the same name. Including the os_options by their key name (
221``for example tenant_id``)
222
223.. _swiftclient connection parameters: http://docs.openstack.org/developer/python-swiftclient/swiftclient.html#module-swiftclient.client
224
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100225**region_name** (optional)
226 The region name holding the swift container
227 ``For example, SYD``
228
229Each destination defined by the :ref:`jobs` will have the following
230default values that it may overwrite.
231
232**default_container** (optional)
233 Container name to place the log into
234 ``For example, logs``
235
236**default_expiry** (optional)
237 How long the signed destination should be available for
238 ``default: 7200 (2hrs)``
239
240**default_max_file_size** (optional)
241 The maximum size of an individual file
242 ``default: 104857600 (100MB)``
243
244**default_max_file_count** (optional)
245 The maximum number of separate files to allow
246 ``default: 10``
247
248**default_logserver_prefix**
249 Provide a URL to the CDN or logserver app so that a worker knows
250 what URL to return. The worker should return the logserver_prefix
251 url and the object path.
252 ``For example: http://logs.example.org/server.app?obj=``
253
James E. Blaircdd00072012-06-08 19:17:28 -0700254layout.yaml
255~~~~~~~~~~~
256
Clark Boylan00635dc2012-09-19 14:03:08 -0700257This is the main configuration file for Zuul, where all of the pipelines
James E. Blaircdd00072012-06-08 19:17:28 -0700258and projects are defined, what tests should be run, and what actions
Clark Boylan00635dc2012-09-19 14:03:08 -0700259Zuul should perform. There are three sections: pipelines, jobs, and
James E. Blaircdd00072012-06-08 19:17:28 -0700260projects.
261
James E. Blaire5a847f2012-07-10 15:29:14 -0700262.. _includes:
263
264Includes
265""""""""
266
267Custom functions to be used in Zuul's configuration may be provided
268using the ``includes`` directive. It accepts a list of files to
269include, and currently supports one type of inclusion, a python file::
270
271 includes:
272 - python-file: local_functions.py
273
274**python-file**
275 The path to a python file. The file will be loaded and objects that
276 it defines will be placed in a special environment which can be
277 referenced in the Zuul configuration. Currently only the
278 parameter-function attribute of a Job uses this feature.
279
Clark Boylan00635dc2012-09-19 14:03:08 -0700280Pipelines
281"""""""""
James E. Blaircdd00072012-06-08 19:17:28 -0700282
Clark Boylan00635dc2012-09-19 14:03:08 -0700283Zuul can have any number of independent pipelines. Whenever a matching
284Gerrit event is found for a pipeline, that event is added to the
285pipeline, and the jobs specified for that pipeline are run. When all
286jobs specified for the pipeline that were triggered by an event are
287completed, Zuul reports back to Gerrit the results.
James E. Blaircdd00072012-06-08 19:17:28 -0700288
Clark Boylan00635dc2012-09-19 14:03:08 -0700289There are no pre-defined pipelines in Zuul, rather you can define
290whatever pipelines you need in the layout file. This is a very flexible
291system that can accommodate many kinds of workflows.
James E. Blaircdd00072012-06-08 19:17:28 -0700292
Clark Boylan00635dc2012-09-19 14:03:08 -0700293Here is a quick example of a pipeline definition followed by an
James E. Blaircdd00072012-06-08 19:17:28 -0700294explanation of each of the parameters::
295
296 - name: check
Clark Boylan00635dc2012-09-19 14:03:08 -0700297 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700298 trigger:
James E. Blair6c358e72013-07-29 17:06:47 -0700299 gerrit:
300 - event: patchset-created
James E. Blaircdd00072012-06-08 19:17:28 -0700301 success:
302 verified: 1
303 failure:
304 verified: -1
305
306**name**
307 This is used later in the project definition to indicate what jobs
Clark Boylan00635dc2012-09-19 14:03:08 -0700308 should be run for events in the pipeline.
James E. Blaircdd00072012-06-08 19:17:28 -0700309
James E. Blair8dbd56a2012-12-22 10:55:10 -0800310**description**
311 This is an optional field that may be used to provide a textual
312 description of the pipeline.
313
James E. Blair56370192013-01-14 15:47:28 -0800314**success-message**
315 An optional field that supplies the introductory text in message
316 reported back to Gerrit when all the voting builds are successful.
317 Defaults to "Build successful."
318
319**failure-message**
320 An optional field that supplies the introductory text in message
321 reported back to Gerrit when at least one voting build fails.
322 Defaults to "Build failed."
323
Joshua Heskethb7179772014-01-30 23:30:46 +1100324**merge-failure-message**
325 An optional field that supplies the introductory text in message
326 reported back to Gerrit when a change fails to merge with the
327 current state of the repository.
328 Defaults to "Merge failed."
329
Joshua Hesketh3979e3e2014-03-04 11:21:10 +1100330**footer-message**
331 An optional field to supply additional information after test results.
332 Useful for adding information about the CI system such as debugging
333 and contact details.
334
James E. Blaircdd00072012-06-08 19:17:28 -0700335**manager**
Clark Boylan00635dc2012-09-19 14:03:08 -0700336 There are currently two schemes for managing pipelines:
James E. Blaircdd00072012-06-08 19:17:28 -0700337
Clark Boylan00635dc2012-09-19 14:03:08 -0700338 *IndependentPipelineManager*
339 Every event in this pipeline should be treated as independent of
340 other events in the pipeline. This is appropriate when the order of
341 events in the pipeline doesn't matter because the results of the
342 actions this pipeline performs can not affect other events in the
343 pipeline. For example, when a change is first uploaded for review,
James E. Blaircdd00072012-06-08 19:17:28 -0700344 you may want to run tests on that change to provide early feedback
345 to reviewers. At the end of the tests, the change is not going to
346 be merged, so it is safe to run these tests in parallel without
Clark Boylan00635dc2012-09-19 14:03:08 -0700347 regard to any other changes in the pipeline. They are independent.
James E. Blaircdd00072012-06-08 19:17:28 -0700348
Clark Boylan00635dc2012-09-19 14:03:08 -0700349 Another type of pipeline that is independent is a post-merge
350 pipeline. In that case, the changes have already merged, so the
351 results can not affect any other events in the pipeline.
James E. Blaircdd00072012-06-08 19:17:28 -0700352
Clark Boylan00635dc2012-09-19 14:03:08 -0700353 *DependentPipelineManager*
354 The dependent pipeline manager is designed for gating. It ensures
James E. Blaircdd00072012-06-08 19:17:28 -0700355 that every change is tested exactly as it is going to be merged
356 into the repository. An ideal gating system would test one change
357 at a time, applied to the tip of the repository, and only if that
358 change passed tests would it be merged. Then the next change in
359 line would be tested the same way. In order to achieve parallel
Clark Boylan00635dc2012-09-19 14:03:08 -0700360 testing of changes, the dependent pipeline manager performs
James E. Blaircdd00072012-06-08 19:17:28 -0700361 speculative execution on changes. It orders changes based on
Clark Boylan00635dc2012-09-19 14:03:08 -0700362 their entry into the pipeline. It begins testing all changes in
363 parallel, assuming that each change ahead in the pipeline will pass
James E. Blaircdd00072012-06-08 19:17:28 -0700364 its tests. If they all succeed, all the changes can be tested and
Clark Boylan00635dc2012-09-19 14:03:08 -0700365 merged in parallel. If a change near the front of the pipeline
366 fails its tests, each change behind it ignores whatever tests have
367 been completed and are tested again without the change in front.
368 This way gate tests may run in parallel but still be tested
369 correctly, exactly as they will appear in the repository when
370 merged.
James E. Blaircdd00072012-06-08 19:17:28 -0700371
Clark Boylan00635dc2012-09-19 14:03:08 -0700372 One important characteristic of the DependentPipelineManager is that
James E. Blaircdd00072012-06-08 19:17:28 -0700373 it analyzes the jobs that are triggered by different projects, and
374 if those projects have jobs in common, it treats those projects as
375 related, and they share a single virtual queue of changes. Thus,
376 if there is a job that performs integration testing on two
377 projects, those two projects will automatically share a virtual
378 change queue. If a third project does not invoke that job, it
Clark Boylan00635dc2012-09-19 14:03:08 -0700379 will be part of a separate virtual change queue, and changes to
380 it will not depend on changes to the first two jobs.
James E. Blaircdd00072012-06-08 19:17:28 -0700381
382 For more detail on the theory and operation of Zuul's
Clark Boylan00635dc2012-09-19 14:03:08 -0700383 DependentPipelineManager, see: :doc:`gating`.
James E. Blaircdd00072012-06-08 19:17:28 -0700384
385**trigger**
James E. Blair6c358e72013-07-29 17:06:47 -0700386 Exactly one trigger source must be supplied for each pipeline.
James E. Blaircdd00072012-06-08 19:17:28 -0700387 Triggers are not exclusive -- matching events may be placed in
James E. Blair6c358e72013-07-29 17:06:47 -0700388 multiple pipelines, and they will behave independently in each of
389 the pipelines they match. You may select from the following:
James E. Blaircdd00072012-06-08 19:17:28 -0700390
James E. Blair6c358e72013-07-29 17:06:47 -0700391 **gerrit**
392 This describes what Gerrit events should be placed in the
393 pipeline. Multiple gerrit triggers may be listed. Further
394 parameters describe the kind of events that match:
James E. Blaircdd00072012-06-08 19:17:28 -0700395
James E. Blair6c358e72013-07-29 17:06:47 -0700396 *event*
397 The event name from gerrit. Examples: ``patchset-created``,
398 ``comment-added``, ``ref-updated``. This field is treated as a
399 regular expression.
James E. Blaircdd00072012-06-08 19:17:28 -0700400
James E. Blair6c358e72013-07-29 17:06:47 -0700401 *branch*
402 The branch associated with the event. Example: ``master``. This
403 field is treated as a regular expression, and multiple branches may
404 be listed.
James E. Blaircdd00072012-06-08 19:17:28 -0700405
James E. Blair6c358e72013-07-29 17:06:47 -0700406 *ref*
407 On ref-updated events, the branch parameter is not used, instead the
408 ref is provided. Currently Gerrit has the somewhat idiosyncratic
409 behavior of specifying bare refs for branch names (e.g., ``master``),
410 but full ref names for other kinds of refs (e.g., ``refs/tags/foo``).
411 Zuul matches what you put here exactly against what Gerrit
412 provides. This field is treated as a regular expression, and
413 multiple refs may be listed.
James E. Blaircdd00072012-06-08 19:17:28 -0700414
James E. Blair6c358e72013-07-29 17:06:47 -0700415 *approval*
416 This is only used for ``comment-added`` events. It only matches if
417 the event has a matching approval associated with it. Example:
418 ``code-review: 2`` matches a ``+2`` vote on the code review category.
419 Multiple approvals may be listed.
Antoine Mussob4e809e2012-12-06 16:58:06 +0100420
James E. Blair1fbfceb2014-06-23 14:42:53 -0700421 *email*
James E. Blair6c358e72013-07-29 17:06:47 -0700422 This is used for any event. It takes a regex applied on the performer
Michael Prokop526926a2013-10-24 16:16:57 +0200423 email, i.e. Gerrit account email address. If you want to specify
James E. Blair6c358e72013-07-29 17:06:47 -0700424 several email filters, you must use a YAML list. Make sure to use non
425 greedy matchers and to escapes dots!
James E. Blair1fbfceb2014-06-23 14:42:53 -0700426 Example: ``email: ^.*?@example\.org$``.
James E. Blair6c358e72013-07-29 17:06:47 -0700427
James E. Blair1fbfceb2014-06-23 14:42:53 -0700428 *email_filter* (deprecated)
429 A deprecated alternate spelling of *email*. Only one of *email* or
430 *email_filter* should be used.
431
432 *username*
Joshua Heskethb8a817e2013-12-27 11:21:38 +1100433 This is used for any event. It takes a regex applied on the performer
434 username, i.e. Gerrit account name. If you want to specify several
435 username filters, you must use a YAML list. Make sure to use non greedy
436 matchers and to escapes dots!
James E. Blair1fbfceb2014-06-23 14:42:53 -0700437 Example: ``username: ^jenkins$``.
Joshua Heskethb8a817e2013-12-27 11:21:38 +1100438
James E. Blair1fbfceb2014-06-23 14:42:53 -0700439 *username_filter* (deprecated)
440 A deprecated alternate spelling of *username*. Only one of *username* or
441 *username_filter* should be used.
442
443 *comment*
James E. Blair6c358e72013-07-29 17:06:47 -0700444 This is only used for ``comment-added`` events. It accepts a list of
445 regexes that are searched for in the comment string. If any of these
446 regexes matches a portion of the comment string the trigger is
James E. Blair1fbfceb2014-06-23 14:42:53 -0700447 matched. ``comment: retrigger`` will match when comments
James E. Blair6c358e72013-07-29 17:06:47 -0700448 containing 'retrigger' somewhere in the comment text are added to a
449 change.
Clark Boylanb9bcb402012-06-29 17:44:05 -0700450
James E. Blair1fbfceb2014-06-23 14:42:53 -0700451 *comment_filter* (deprecated)
452 A deprecated alternate spelling of *comment*. Only one of *comment* or
453 *comment_filter* should be used.
454
James E. Blair9c17dbf2014-06-23 14:21:58 -0700455 *require-approval*
James E. Blairc053d022014-01-22 14:57:33 -0800456 This may be used for any event. It requires that a certain kind
457 of approval be present for the current patchset of the change (the
James E. Blair11041d22014-05-02 14:49:53 -0700458 approval could be added by the event in question). It follows the
James E. Blair9c17dbf2014-06-23 14:21:58 -0700459 same syntax as the "approval" pipeline requirement below.
James E. Blairc053d022014-01-22 14:57:33 -0800460
James E. Blair63bb0ef2013-07-29 17:14:51 -0700461 **timer**
462 This trigger will run based on a cron-style time specification.
463 It will enqueue an event into its pipeline for every project
464 defined in the configuration. Any job associated with the
465 pipeline will run in response to that event.
466
467 *time*
468 The time specification in cron syntax. Only the 5 part syntax is
469 supported, not the symbolic names. Example: ``0 0 * * *`` runs
470 at midnight.
471
James E. Blair11041d22014-05-02 14:49:53 -0700472**require**
473 If this section is present, it established pre-requisites for any
474 kind of item entering the Pipeline. Regardless of how the item is
475 to be enqueued (via any trigger or automatic dependency resolution),
476 the conditions specified here must be met or the item will not be
477 enqueued.
478
479 **approval**
480 This requires that a certain kind of approval be present for the
481 current patchset of the change (the approval could be added by the
482 event in question). It takes several sub-parameters, all of which
483 are optional and are combined together so that there must be an
484 approval matching all specified requirements.
485
486 *username*
487 If present, an approval from this username is required.
488
James E. Blair1fbfceb2014-06-23 14:42:53 -0700489 *email*
James E. Blair11041d22014-05-02 14:49:53 -0700490 If present, an approval with this email address is required. It
491 is treated as a regular expression as above.
492
James E. Blair1fbfceb2014-06-23 14:42:53 -0700493 *email-filter* (deprecated)
494 A deprecated alternate spelling of *email*. Only one of *email* or
495 *email_filter* should be used.
496
James E. Blair11041d22014-05-02 14:49:53 -0700497 *older-than*
498 If present, the approval must be older than this amount of time
499 to match. Provide a time interval as a number with a suffix of
500 "w" (weeks), "d" (days), "h" (hours), "m" (minutes), "s"
501 (seconds). Example ``48h`` or ``2d``.
502
503 *newer-than*
504 If present, the approval must be newer than this amount of time
505 to match. Same format as "older-than".
506
507 Any other field is interpreted as a review category and value
508 pair. For example ``verified: 1`` would require that the approval
James E. Blair9c17dbf2014-06-23 14:21:58 -0700509 be for a +1 vote in the "Verified" column. The value may either
510 be a single value or a list: ``verified: [1, 2]`` would match
511 either a +1 or +2 vote.
James E. Blair11041d22014-05-02 14:49:53 -0700512
513 **open**
514 A boolean value (``true`` or ``false``) that indicates whether the change
515 must be open or closed in order to be enqueued.
516
Clark Boylana9702ad2014-05-08 17:17:24 -0700517 **current-patchset**
518 A boolean value (``true`` or ``false``) that indicates whether the change
519 must be the current patchset in order to be enqueued.
520
James E. Blair11041d22014-05-02 14:49:53 -0700521 **status**
522 A string value that corresponds with the status of the change
523 reported by the trigger. For example, when using the Gerrit
524 trigger, status values such as ``NEW`` or ``MERGED`` may be useful.
James E. Blair63bb0ef2013-07-29 17:14:51 -0700525
James E. Blair2fa50962013-01-30 21:50:41 -0800526**dequeue-on-new-patchset**
527 Normally, if a new patchset is uploaded to a change that is in a
528 pipeline, the existing entry in the pipeline will be removed (with
529 jobs canceled and any dependent changes that can no longer merge as
530 well. To suppress this behavior (and allow jobs to continue
531 running), set this to ``false``. Default: ``true``.
532
James E. Blaircdd00072012-06-08 19:17:28 -0700533**success**
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000534 Describes where Zuul should report to if all the jobs complete
535 successfully.
James E. Blaircdd00072012-06-08 19:17:28 -0700536 This section is optional; if it is omitted, Zuul will run jobs and
537 do nothing on success; it will not even report a message to Gerrit.
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000538 If the section is present, the listed reporter plugins will be
539 asked to report on the jobs.
540 Each reporter's value dictionary is handled by the reporter. See
541 reporters for more details.
James E. Blaircdd00072012-06-08 19:17:28 -0700542
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400543**failure**
James E. Blaircdd00072012-06-08 19:17:28 -0700544 Uses the same syntax as **success**, but describes what Zuul should
545 do if at least one job fails.
James E. Blairdc253862012-06-13 17:12:42 -0700546
Joshua Heskethb7179772014-01-30 23:30:46 +1100547**merge-failure**
548 Uses the same syntax as **success**, but describes what Zuul should
549 do if it is unable to merge in the patchset. If no merge-failure
550 reporters are listed then the ``failure`` reporters will be used to
551 notify of unsuccessful merges.
552
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400553**start**
James E. Blairdc253862012-06-13 17:12:42 -0700554 Uses the same syntax as **success**, but describes what Zuul should
Clark Boylan00635dc2012-09-19 14:03:08 -0700555 do when a change is added to the pipeline manager. This can be used,
James E. Blairdc253862012-06-13 17:12:42 -0700556 for example, to reset the value of the Verified review category.
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400557
James E. Blair64ed6f22013-07-10 14:07:23 -0700558**precedence**
559 Indicates how the build scheduler should prioritize jobs for
560 different pipelines. Each pipeline may have one precedence, jobs
561 for pipelines with a higher precedence will be run before ones with
562 lower. The value should be one of ``high``, ``normal``, or ``low``.
563 Default: ``normal``.
564
Clark Boylanc2d19e42014-01-23 14:08:58 -0800565**window**
566 DependentPipelineManagers only. Zuul can rate limit
567 DependentPipelineManagers in a manner similar to TCP flow control.
568 Jobs are only started for changes in the queue if they sit in the
569 actionable window for the pipeline. The initial length of this window
570 is configurable with this value. The value given should be a positive
571 integer value. A value of ``0`` disables rate limiting on the
572 DependentPipelineManager.
573 Default: ``20``.
574
575**window-floor**
576 DependentPipelineManagers only. This is the minimum value for the
577 window described above. Should be a positive non zero integer value.
578 Default: ``3``.
579
580**window-increase-type**
581 DependentPipelineManagers only. This value describes how the window
582 should grow when changes are successfully merged by zuul. A value of
583 ``linear`` indicates that ``window-increase-factor`` should be added
584 to the previous window value. A value of ``exponential`` indicates
585 that ``window-increase-factor`` should be multiplied against the
586 previous window value and the result will become the window size.
587 Default: ``linear``.
588
589**window-increase-factor**
590 DependentPipelineManagers only. The value to be added or mulitplied
591 against the previous window value to determine the new window after
592 successful change merges.
593 Default: ``1``.
594
595**window-decrease-type**
596 DependentPipelineManagers only. This value describes how the window
597 should shrink when changes are not able to be merged by Zuul. A value
598 of ``linear`` indicates that ``window-decrease-factor`` should be
599 subtracted from the previous window value. A value of ``exponential``
600 indicates that ``window-decrease-factor`` should be divided against
601 the previous window value and the result will become the window size.
602 Default: ``exponential``.
603
604**window-decrease-factor**
605 DependentPipelineManagers only. The value to be subtracted or divided
606 against the previous window value to determine the new window after
607 unsuccessful change merges.
608 Default: ``2``.
609
Clark Boylan00635dc2012-09-19 14:03:08 -0700610Some example pipeline configurations are included in the sample layout
611file. The first is called a *check* pipeline::
James E. Blaircdd00072012-06-08 19:17:28 -0700612
613 - name: check
Clark Boylan00635dc2012-09-19 14:03:08 -0700614 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700615 trigger:
616 - event: patchset-created
617 success:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000618 gerrit:
619 verified: 1
James E. Blaircdd00072012-06-08 19:17:28 -0700620 failure:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000621 gerrit:
622 verified: -1
James E. Blaircdd00072012-06-08 19:17:28 -0700623
624This will trigger jobs each time a new patchset (or change) is
625uploaded to Gerrit, and report +/-1 values to Gerrit in the
626``verified`` review category. ::
627
628 - name: gate
Clark Boylan00635dc2012-09-19 14:03:08 -0700629 manager: DependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700630 trigger:
631 - event: comment-added
632 approval:
633 - approved: 1
634 success:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000635 gerrit:
636 verified: 2
637 submit: true
James E. Blaircdd00072012-06-08 19:17:28 -0700638 failure:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000639 gerrit:
640 verified: -2
James E. Blaircdd00072012-06-08 19:17:28 -0700641
642This will trigger jobs whenever a reviewer leaves a vote of ``1`` in the
643``approved`` review category in Gerrit (a non-standard category).
644Changes will be tested in such a way as to guarantee that they will be
645merged exactly as tested, though that will happen in parallel by
646creating a virtual queue of dependent changes and performing
647speculative execution of jobs. ::
648
649 - name: post
Clark Boylan00635dc2012-09-19 14:03:08 -0700650 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700651 trigger:
652 - event: ref-updated
653 ref: ^(?!refs/).*$
654
655This will trigger jobs whenever a change is merged to a named branch
656(e.g., ``master``). No output will be reported to Gerrit. This is
657useful for side effects such as creating per-commit tarballs. ::
658
659 - name: silent
Clark Boylan00635dc2012-09-19 14:03:08 -0700660 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700661 trigger:
662 - event: patchset-created
663
664This also triggers jobs when changes are uploaded to Gerrit, but no
665results are reported to Gerrit. This is useful for jobs that are in
Antoine Mussoce333842012-10-16 14:42:35 +0200666development and not yet ready to be presented to developers. ::
667
668 pipelines:
669 - name: post-merge
670 manager: IndependentPipelineManager
671 trigger:
672 - event: change-merged
673 success:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000674 gerrit:
675 force-message: True
Antoine Mussoce333842012-10-16 14:42:35 +0200676 failure:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000677 gerrit:
678 force-message: True
Antoine Mussoce333842012-10-16 14:42:35 +0200679
680The ``change-merged`` events happen when a change has been merged in the git
681repository. The change is thus closed and Gerrit will not accept modifications
682to the review scoring such as ``code-review`` or ``verified``. By using the
683``force-message: True`` parameter, Zuul will pass ``--force-message`` to the
684``gerrit review`` command, thus making sure the message is actually
685sent back to Gerrit regardless of approval scores.
686That kind of pipeline is nice to run regression or performance tests.
687
688.. note::
689 The ``change-merged`` event does not include the commit sha1 which can be
690 hazardous, it would let you report back to Gerrit though. If you were to
Michael Prokop526926a2013-10-24 16:16:57 +0200691 build a tarball for a specific commit, you should consider instead using
Łukasz Jernaś048acb42014-03-02 18:49:41 +0100692 the ``ref-updated`` event which does include the commit sha1 (but lacks the
Antoine Mussoce333842012-10-16 14:42:35 +0200693 Gerrit change number).
James E. Blaircdd00072012-06-08 19:17:28 -0700694
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100695
696.. _jobs:
697
James E. Blaircdd00072012-06-08 19:17:28 -0700698Jobs
699""""
700
701The jobs section is optional, and can be used to set attributes of
702jobs that are independent of their association with a project. For
703example, if a job should return a customized message on failure, that
704may be specified here. Otherwise, Zuul does not need to be told about
705each job as it builds a list from the project specification.
706
707**name**
708 The name of the job. This field is treated as a regular expression
709 and will be applied to each job that matches.
710
James E. Blairc8a1e052014-02-25 09:29:26 -0800711**queue-name (optional)**
712 Zuul will automatically combine projects that share a job into
713 shared change queues for dependent pipeline managers. In order to
714 report statistics about these queues, it is convenient for them to
715 have names. Zuul can automatically name change queues, however
716 these can grow quite long and are prone to changing as projects in
717 the queue change. If you assign a queue-name to a job, Zuul will
718 use that as the name for the shared change queue that contains that
719 job instead of the automatically generated one. It is an error for
720 a shared change queue to have more than one job with a queue-name if
721 they are not the same.
722
James E. Blaire5a847f2012-07-10 15:29:14 -0700723**failure-message (optional)**
724 The message that should be reported to Gerrit if the job fails.
James E. Blaircdd00072012-06-08 19:17:28 -0700725
James E. Blaire5a847f2012-07-10 15:29:14 -0700726**success-message (optional)**
727 The message that should be reported to Gerrit if the job fails.
James E. Blaircdd00072012-06-08 19:17:28 -0700728
James E. Blair6aea36d2012-12-17 13:03:24 -0800729**failure-pattern (optional)**
730 The URL that should be reported to Gerrit if the job fails.
James E. Blair1f4c2bb2013-04-26 08:40:46 -0700731 Defaults to the build URL or the url_pattern configured in
James E. Blair6aea36d2012-12-17 13:03:24 -0800732 zuul.conf. May be supplied as a string pattern with substitutions
733 as described in url_pattern in :ref:`zuulconf`.
734
735**success-pattern (optional)**
736 The URL that should be reported to Gerrit if the job succeeds.
James E. Blair1f4c2bb2013-04-26 08:40:46 -0700737 Defaults to the build URL or the url_pattern configured in
James E. Blair6aea36d2012-12-17 13:03:24 -0800738 zuul.conf. May be supplied as a string pattern with substitutions
739 as described in url_pattern in :ref:`zuulconf`.
740
James E. Blair222d4982012-07-16 09:31:19 -0700741**hold-following-changes (optional)**
742 This is a boolean that indicates that changes that follow this
Clark Boylan00635dc2012-09-19 14:03:08 -0700743 change in a dependent change pipeline should wait until this job
James E. Blair222d4982012-07-16 09:31:19 -0700744 succeeds before launching. If this is applied to a very short job
745 that can predict whether longer jobs will fail early, this can be
746 used to reduce the number of jobs that Zuul will launch and
747 ultimately have to cancel. In that case, a small amount of
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400748 parallelization of jobs is traded for more efficient use of testing
James E. Blair222d4982012-07-16 09:31:19 -0700749 resources. On the other hand, to apply this to a long running job
750 would largely defeat the parallelization of dependent change testing
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400751 that is the main feature of Zuul. Default: ``false``.
James E. Blair222d4982012-07-16 09:31:19 -0700752
James E. Blaire5a847f2012-07-10 15:29:14 -0700753**branch (optional)**
James E. Blaircdd00072012-06-08 19:17:28 -0700754 This job should only be run on matching branches. This field is
755 treated as a regular expression and multiple branches may be
756 listed.
757
James E. Blair70c71582013-03-06 08:50:50 -0800758**files (optional)**
759 This job should only be run if at least one of the files involved in
760 the change (added, deleted, or modified) matches at least one of the
761 file patterns listed here. This field is treated as a regular
762 expression and multiple expressions may be listed.
763
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400764**voting (optional)**
765 Boolean value (``true`` or ``false``) that indicates whatever
766 a job is voting or not. Default: ``true``.
767
James E. Blaire5a847f2012-07-10 15:29:14 -0700768**parameter-function (optional)**
769 Specifies a function that should be applied to the parameters before
770 the job is launched. The function should be defined in a python file
771 included with the :ref:`includes` directive. The function
772 should have the following signature:
773
James E. Blaird0470972013-07-29 10:05:43 -0700774 .. function:: parameters(item, job, parameters)
James E. Blaire5a847f2012-07-10 15:29:14 -0700775
776 Manipulate the parameters passed to a job before a build is
777 launched. The ``parameters`` dictionary will already contain the
778 standard Zuul job parameters, and is expected to be modified
779 in-place.
780
James E. Blaird78576a2013-07-09 10:39:17 -0700781 :param item: the current queue item
782 :type item: zuul.model.QueueItem
James E. Blaird0470972013-07-29 10:05:43 -0700783 :param job: the job about to be run
784 :type job: zuul.model.Job
James E. Blaire5a847f2012-07-10 15:29:14 -0700785 :param parameters: parameters to be passed to the job
786 :type parameters: dict
787
James E. Blair1f4c2bb2013-04-26 08:40:46 -0700788 If the parameter **ZUUL_NODE** is set by this function, then it will
789 be used to specify on what node (or class of node) the job should be
790 run.
791
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100792**swift**
793 If :ref:`swift` is configured then each job can define a destination
794 container for the builder to place logs and/or assets into. Multiple
795 containers can be listed for each job by providing a unique ``name``.
796
797 *name*
798 Set an identifying name for the container. This is used in the
799 parameter key sent to the builder. For example if it ``logs`` then
800 one of the parameters sent will be ``SWIFT_logs_CONTAINER``
801 (case-sensitive).
802
803 Each of the defaults defined in :ref:`swift` can be overwritten as:
804
805 *container* (optional)
806 Container name to place the log into
807 ``For example, logs``
808
809 *expiry* (optional)
810 How long the signed destination should be available for
811
James E. Blaird6500232014-06-23 15:05:48 -0700812 *max-file-size** (optional)
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100813 The maximum size of an individual file
814
James E. Blaird6500232014-06-23 15:05:48 -0700815 *max_file_size** (optional, deprecated)
816 A deprecated alternate spelling of *max-file-size*.
817
818 *max-file-count* (optional)
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100819 The maximum number of separate files to allow
820
James E. Blaird6500232014-06-23 15:05:48 -0700821 *max_file_count* (optional, deprecated)
822 A deprecated alternate spelling of *max-file-count*.
823
824 *logserver-prefix*
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100825 Provide a URL to the CDN or logserver app so that a worker knows
826 what URL to return.
827 ``For example: http://logs.example.org/server.app?obj=``
James E. Blaird6500232014-06-23 15:05:48 -0700828 The worker should return the logserver-prefix url and the object
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100829 path as the URL in the results data packet.
830
James E. Blaird6500232014-06-23 15:05:48 -0700831 *logserver_prefix* (deprecated)
832 A deprecated alternate spelling of *logserver-prefix*.
833
James E. Blaircdd00072012-06-08 19:17:28 -0700834Here is an example of setting the failure message for jobs that check
835whether a change merges cleanly::
836
837 - name: ^.*-merge$
838 failure-message: This change was unable to be automatically merged
839 with the current state of the repository. Please rebase your
840 change and upload a new patchset.
841
842Projects
843""""""""
844
Clark Boylan00635dc2012-09-19 14:03:08 -0700845The projects section indicates what jobs should be run in each pipeline
James E. Blaircdd00072012-06-08 19:17:28 -0700846for events associated with each project. It contains a list of
847projects. Here is an example::
848
849 - name: example/project
850 check:
851 - project-merge:
852 - project-unittest
Clark Boylan00635dc2012-09-19 14:03:08 -0700853 - project-pep8
854 - project-pyflakes
James E. Blaircdd00072012-06-08 19:17:28 -0700855 gate:
856 - project-merge:
857 - project-unittest
Clark Boylan00635dc2012-09-19 14:03:08 -0700858 - project-pep8
859 - project-pyflakes
James E. Blaircdd00072012-06-08 19:17:28 -0700860 post:
861 - project-publish
862
863**name**
864 The name of the project (as known by Gerrit).
865
James E. Blair19deff22013-08-25 13:17:35 -0700866**merge-mode (optional)**
867 An optional value that indicates what strategy should be used to
868 merge changes to this project. Supported values are:
869
870 ** merge-resolve **
871 Equivalent to 'git merge -s resolve'. This corresponds closely to
872 what Gerrit performs (using JGit) for a project if the "Merge if
873 necessary" merge mode is selected and "Automatically resolve
874 conflicts" is checked. This is the default.
875
876 ** merge **
877 Equivalent to 'git merge'.
878
879 ** cherry-pick **
880 Equivalent to 'git cherry-pick'.
881
Clark Boylan00635dc2012-09-19 14:03:08 -0700882This is followed by a section for each of the pipelines defined above.
883Pipelines may be omitted if no jobs should run for this project in a
884given pipeline. Within the pipeline section, the jobs that should be
James E. Blaircdd00072012-06-08 19:17:28 -0700885executed are listed. If a job is entered as a dictionary key, then
886jobs contained within that key are only executed if the key job
887succeeds. In the above example, project-unittest, project-pep8, and
888project-pyflakes are only executed if project-merge succeeds. This
889can help avoid running unnecessary jobs.
890
James E. Blair18c64442014-03-18 10:14:45 -0700891The special job named ``noop`` is internal to Zuul and will always
892return ``SUCCESS`` immediately. This can be useful if you require
893that all changes be processed by a pipeline but a project has no jobs
894that can be run on it.
895
Paul Belangerffef9e42013-02-11 22:15:18 -0500896.. seealso:: The OpenStack Zuul configuration for a comprehensive example: https://github.com/openstack-infra/config/blob/master/modules/openstack_project/files/zuul/layout.yaml
James E. Blaircdd00072012-06-08 19:17:28 -0700897
Antoine Musso80edd5a2013-02-13 15:37:53 +0100898Project Templates
899"""""""""""""""""
900
Michael Prokop526926a2013-10-24 16:16:57 +0200901Whenever you have lot of similar projects (such as plugins for a project) you
Antoine Musso80edd5a2013-02-13 15:37:53 +0100902will most probably want to use the same pipeline configurations. The
903project templates let you define pipelines and job name templates to trigger.
904One can then just apply the template on its project which make it easier to
Michael Prokop526926a2013-10-24 16:16:57 +0200905update several similar projects. As an example::
Antoine Musso80edd5a2013-02-13 15:37:53 +0100906
907 project-templates:
908 # Name of the template
909 - name: plugin-triggering
910 # Definition of pipelines just like for a `project`
911 check:
912 - '{jobprefix}-merge':
913 - '{jobprefix}-pep8'
914 - '{jobprefix}-pyflakes'
915 gate:
916 - '{jobprefix}-merge':
917 - '{jobprefix}-unittest'
918 - '{jobprefix}-pep8'
919 - '{jobprefix}-pyflakes'
920
921In your projects definition, you will then apply the template using the template
922key::
923
924 projects:
925 - name: plugin/foobar
926 template:
927 - name: plugin-triggering
928 jobprefix: plugin-foobar
929
James E. Blairaea6cf62013-12-16 15:38:12 -0800930You can pass several parameters to a template. A ``parameter`` value
931will be used for expansion of ``{parameter}`` in the template
932strings. The parameter ``name`` will be automatically provided and
933will contain the short name of the project, that is the portion of the
934project name after the last ``/`` character.
James E. Blaircdd00072012-06-08 19:17:28 -0700935
James E. Blair3e98c022013-12-16 15:25:38 -0800936Multiple templates can be combined in a project, and the jobs from all
937of those templates will be added to the project. Individual jobs may
938also be added::
939
940 projects:
941 - name: plugin/foobar
942 template:
943 - name: plugin-triggering
944 jobprefix: plugin-foobar
945 - name: plugin-extras
946 jobprefix: plugin-foobar
947 check:
948 - foobar-extra-special-job
949
950The order of the jobs listed in the project (which only affects the
951order of jobs listed on the report) will be the jobs from each
952template in the order listed, followed by any jobs individually listed
953for the project.
954
955Note that if multiple templates are used for a project and one
956template specifies a job that is also specified in another template,
James E. Blair12a92b12014-03-26 11:54:53 -0700957or specified in the project itself, the configuration defined by
958either the last template or the project itself will take priority.
James E. Blair3e98c022013-12-16 15:25:38 -0800959
James E. Blaircdd00072012-06-08 19:17:28 -0700960logging.conf
961~~~~~~~~~~~~
962This file is optional. If provided, it should be a standard
963:mod:`logging.config` module configuration file. If not present, Zuul will
964output all log messages of DEBUG level or higher to the console.
965
966Starting Zuul
967-------------
968
969To start Zuul, run **zuul-server**::
970
Antoine Mussob3aa8282013-04-19 15:16:59 +0200971 usage: zuul-server [-h] [-c CONFIG] [-l LAYOUT] [-d] [-t] [--version]
James E. Blaircdd00072012-06-08 19:17:28 -0700972
973 Project gating system.
974
975 optional arguments:
976 -h, --help show this help message and exit
977 -c CONFIG specify the config file
Antoine Mussob3aa8282013-04-19 15:16:59 +0200978 -l LAYOUT specify the layout file
James E. Blaircdd00072012-06-08 19:17:28 -0700979 -d do not run as a daemon
Antoine Mussob3aa8282013-04-19 15:16:59 +0200980 -t validate layout file syntax
981 --version show zuul version
James E. Blaircdd00072012-06-08 19:17:28 -0700982
983You may want to use the ``-d`` argument while you are initially setting
984up Zuul so you can detect any configuration errors quickly. Under
985normal operation, omit ``-d`` and let Zuul run as a daemon.
986
987If you send signal 1 (SIGHUP) to the zuul-server process, Zuul will
988stop executing new jobs, wait until all executing jobs are finished,
989reload its configuration, and resume. Any values in any of the
990configuration files may be changed, except the location of Zuul's PID
991file (a change to that will be ignored until Zuul is restarted).
Clark Boylanf231fa22013-02-08 12:28:53 -0800992
993If you send a SIGUSR1 to the zuul-server process, Zuul will stop
994executing new jobs, wait until all executing jobs are finished,
995then exit. While waiting to exit Zuul will queue Gerrit events and
996save these events prior to exiting. When Zuul starts again it will
997read these saved events and act on them.
Jeremy Stanley93e05f42013-03-08 17:29:17 +0000998
Michael Prokop526926a2013-10-24 16:16:57 +0200999If you need to abort Zuul and intend to manually requeue changes for
Jeremy Stanley93e05f42013-03-08 17:29:17 +00001000jobs which were running in its pipelines, prior to terminating you can
1001use the zuul-changes.py tool script to simplify the process. For
1002example, this would give you a list of Gerrit commands to reverify or
1003recheck changes for the gate and check pipelines respectively::
1004
1005 ./tools/zuul-changes.py --review-host=review.openstack.org \
1006 http://zuul.openstack.org/ gate 'reverify no bug'
1007 ./tools/zuul-changes.py --review-host=review.openstack.org \
1008 http://zuul.openstack.org/ check 'recheck no bug'
Clark Boylanfba9b242013-08-20 10:11:17 -07001009
1010If you send a SIGUSR2 to the zuul-server process, Zuul will dump a stack
1011trace for each running thread into its debug log. This is useful for
1012tracking down deadlock or otherwise slow threads.