blob: cb49c82b4e386532d6a57cf1f543ae716dac0cbb [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
190present. Multiple destinations can be defined in the :ref:`jobs`
191section of the layout.
192
193**authurl**
194 The (keystone) Auth URL for swift
195 ``For example, https://identity.api.rackspacecloud.com/v2.0/``
196
197Any of the `swiftclient connection parameters`_ can also be defined
198here by the same name. Including the os_options by their key name (
199``for example tenant_id``)
200
201.. _swiftclient connection parameters: http://docs.openstack.org/developer/python-swiftclient/swiftclient.html#module-swiftclient.client
202
203**X-Account-Meta-Temp-Url-Key** (optional)
204 This is the key used to sign the HMAC message. zuul will send the
205 key to swift for you so you only need to define it here. If you do
206 not set a key zuul will generate one automatically.
207
208**region_name** (optional)
209 The region name holding the swift container
210 ``For example, SYD``
211
212Each destination defined by the :ref:`jobs` will have the following
213default values that it may overwrite.
214
215**default_container** (optional)
216 Container name to place the log into
217 ``For example, logs``
218
219**default_expiry** (optional)
220 How long the signed destination should be available for
221 ``default: 7200 (2hrs)``
222
223**default_max_file_size** (optional)
224 The maximum size of an individual file
225 ``default: 104857600 (100MB)``
226
227**default_max_file_count** (optional)
228 The maximum number of separate files to allow
229 ``default: 10``
230
231**default_logserver_prefix**
232 Provide a URL to the CDN or logserver app so that a worker knows
233 what URL to return. The worker should return the logserver_prefix
234 url and the object path.
235 ``For example: http://logs.example.org/server.app?obj=``
236
James E. Blaircdd00072012-06-08 19:17:28 -0700237layout.yaml
238~~~~~~~~~~~
239
Clark Boylan00635dc2012-09-19 14:03:08 -0700240This is the main configuration file for Zuul, where all of the pipelines
James E. Blaircdd00072012-06-08 19:17:28 -0700241and projects are defined, what tests should be run, and what actions
Clark Boylan00635dc2012-09-19 14:03:08 -0700242Zuul should perform. There are three sections: pipelines, jobs, and
James E. Blaircdd00072012-06-08 19:17:28 -0700243projects.
244
James E. Blaire5a847f2012-07-10 15:29:14 -0700245.. _includes:
246
247Includes
248""""""""
249
250Custom functions to be used in Zuul's configuration may be provided
251using the ``includes`` directive. It accepts a list of files to
252include, and currently supports one type of inclusion, a python file::
253
254 includes:
255 - python-file: local_functions.py
256
257**python-file**
258 The path to a python file. The file will be loaded and objects that
259 it defines will be placed in a special environment which can be
260 referenced in the Zuul configuration. Currently only the
261 parameter-function attribute of a Job uses this feature.
262
Clark Boylan00635dc2012-09-19 14:03:08 -0700263Pipelines
264"""""""""
James E. Blaircdd00072012-06-08 19:17:28 -0700265
Clark Boylan00635dc2012-09-19 14:03:08 -0700266Zuul can have any number of independent pipelines. Whenever a matching
267Gerrit event is found for a pipeline, that event is added to the
268pipeline, and the jobs specified for that pipeline are run. When all
269jobs specified for the pipeline that were triggered by an event are
270completed, Zuul reports back to Gerrit the results.
James E. Blaircdd00072012-06-08 19:17:28 -0700271
Clark Boylan00635dc2012-09-19 14:03:08 -0700272There are no pre-defined pipelines in Zuul, rather you can define
273whatever pipelines you need in the layout file. This is a very flexible
274system that can accommodate many kinds of workflows.
James E. Blaircdd00072012-06-08 19:17:28 -0700275
Clark Boylan00635dc2012-09-19 14:03:08 -0700276Here is a quick example of a pipeline definition followed by an
James E. Blaircdd00072012-06-08 19:17:28 -0700277explanation of each of the parameters::
278
279 - name: check
Clark Boylan00635dc2012-09-19 14:03:08 -0700280 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700281 trigger:
James E. Blair6c358e72013-07-29 17:06:47 -0700282 gerrit:
283 - event: patchset-created
James E. Blaircdd00072012-06-08 19:17:28 -0700284 success:
285 verified: 1
286 failure:
287 verified: -1
288
289**name**
290 This is used later in the project definition to indicate what jobs
Clark Boylan00635dc2012-09-19 14:03:08 -0700291 should be run for events in the pipeline.
James E. Blaircdd00072012-06-08 19:17:28 -0700292
James E. Blair8dbd56a2012-12-22 10:55:10 -0800293**description**
294 This is an optional field that may be used to provide a textual
295 description of the pipeline.
296
James E. Blair56370192013-01-14 15:47:28 -0800297**success-message**
298 An optional field that supplies the introductory text in message
299 reported back to Gerrit when all the voting builds are successful.
300 Defaults to "Build successful."
301
302**failure-message**
303 An optional field that supplies the introductory text in message
304 reported back to Gerrit when at least one voting build fails.
305 Defaults to "Build failed."
306
Joshua Heskethb7179772014-01-30 23:30:46 +1100307**merge-failure-message**
308 An optional field that supplies the introductory text in message
309 reported back to Gerrit when a change fails to merge with the
310 current state of the repository.
311 Defaults to "Merge failed."
312
Joshua Hesketh3979e3e2014-03-04 11:21:10 +1100313**footer-message**
314 An optional field to supply additional information after test results.
315 Useful for adding information about the CI system such as debugging
316 and contact details.
317
James E. Blaircdd00072012-06-08 19:17:28 -0700318**manager**
Clark Boylan00635dc2012-09-19 14:03:08 -0700319 There are currently two schemes for managing pipelines:
James E. Blaircdd00072012-06-08 19:17:28 -0700320
Clark Boylan00635dc2012-09-19 14:03:08 -0700321 *IndependentPipelineManager*
322 Every event in this pipeline should be treated as independent of
323 other events in the pipeline. This is appropriate when the order of
324 events in the pipeline doesn't matter because the results of the
325 actions this pipeline performs can not affect other events in the
326 pipeline. For example, when a change is first uploaded for review,
James E. Blaircdd00072012-06-08 19:17:28 -0700327 you may want to run tests on that change to provide early feedback
328 to reviewers. At the end of the tests, the change is not going to
329 be merged, so it is safe to run these tests in parallel without
Clark Boylan00635dc2012-09-19 14:03:08 -0700330 regard to any other changes in the pipeline. They are independent.
James E. Blaircdd00072012-06-08 19:17:28 -0700331
Clark Boylan00635dc2012-09-19 14:03:08 -0700332 Another type of pipeline that is independent is a post-merge
333 pipeline. In that case, the changes have already merged, so the
334 results can not affect any other events in the pipeline.
James E. Blaircdd00072012-06-08 19:17:28 -0700335
Clark Boylan00635dc2012-09-19 14:03:08 -0700336 *DependentPipelineManager*
337 The dependent pipeline manager is designed for gating. It ensures
James E. Blaircdd00072012-06-08 19:17:28 -0700338 that every change is tested exactly as it is going to be merged
339 into the repository. An ideal gating system would test one change
340 at a time, applied to the tip of the repository, and only if that
341 change passed tests would it be merged. Then the next change in
342 line would be tested the same way. In order to achieve parallel
Clark Boylan00635dc2012-09-19 14:03:08 -0700343 testing of changes, the dependent pipeline manager performs
James E. Blaircdd00072012-06-08 19:17:28 -0700344 speculative execution on changes. It orders changes based on
Clark Boylan00635dc2012-09-19 14:03:08 -0700345 their entry into the pipeline. It begins testing all changes in
346 parallel, assuming that each change ahead in the pipeline will pass
James E. Blaircdd00072012-06-08 19:17:28 -0700347 its tests. If they all succeed, all the changes can be tested and
Clark Boylan00635dc2012-09-19 14:03:08 -0700348 merged in parallel. If a change near the front of the pipeline
349 fails its tests, each change behind it ignores whatever tests have
350 been completed and are tested again without the change in front.
351 This way gate tests may run in parallel but still be tested
352 correctly, exactly as they will appear in the repository when
353 merged.
James E. Blaircdd00072012-06-08 19:17:28 -0700354
Clark Boylan00635dc2012-09-19 14:03:08 -0700355 One important characteristic of the DependentPipelineManager is that
James E. Blaircdd00072012-06-08 19:17:28 -0700356 it analyzes the jobs that are triggered by different projects, and
357 if those projects have jobs in common, it treats those projects as
358 related, and they share a single virtual queue of changes. Thus,
359 if there is a job that performs integration testing on two
360 projects, those two projects will automatically share a virtual
361 change queue. If a third project does not invoke that job, it
Clark Boylan00635dc2012-09-19 14:03:08 -0700362 will be part of a separate virtual change queue, and changes to
363 it will not depend on changes to the first two jobs.
James E. Blaircdd00072012-06-08 19:17:28 -0700364
365 For more detail on the theory and operation of Zuul's
Clark Boylan00635dc2012-09-19 14:03:08 -0700366 DependentPipelineManager, see: :doc:`gating`.
James E. Blaircdd00072012-06-08 19:17:28 -0700367
368**trigger**
James E. Blair6c358e72013-07-29 17:06:47 -0700369 Exactly one trigger source must be supplied for each pipeline.
James E. Blaircdd00072012-06-08 19:17:28 -0700370 Triggers are not exclusive -- matching events may be placed in
James E. Blair6c358e72013-07-29 17:06:47 -0700371 multiple pipelines, and they will behave independently in each of
372 the pipelines they match. You may select from the following:
James E. Blaircdd00072012-06-08 19:17:28 -0700373
James E. Blair6c358e72013-07-29 17:06:47 -0700374 **gerrit**
375 This describes what Gerrit events should be placed in the
376 pipeline. Multiple gerrit triggers may be listed. Further
377 parameters describe the kind of events that match:
James E. Blaircdd00072012-06-08 19:17:28 -0700378
James E. Blair6c358e72013-07-29 17:06:47 -0700379 *event*
380 The event name from gerrit. Examples: ``patchset-created``,
381 ``comment-added``, ``ref-updated``. This field is treated as a
382 regular expression.
James E. Blaircdd00072012-06-08 19:17:28 -0700383
James E. Blair6c358e72013-07-29 17:06:47 -0700384 *branch*
385 The branch associated with the event. Example: ``master``. This
386 field is treated as a regular expression, and multiple branches may
387 be listed.
James E. Blaircdd00072012-06-08 19:17:28 -0700388
James E. Blair6c358e72013-07-29 17:06:47 -0700389 *ref*
390 On ref-updated events, the branch parameter is not used, instead the
391 ref is provided. Currently Gerrit has the somewhat idiosyncratic
392 behavior of specifying bare refs for branch names (e.g., ``master``),
393 but full ref names for other kinds of refs (e.g., ``refs/tags/foo``).
394 Zuul matches what you put here exactly against what Gerrit
395 provides. This field is treated as a regular expression, and
396 multiple refs may be listed.
James E. Blaircdd00072012-06-08 19:17:28 -0700397
James E. Blair6c358e72013-07-29 17:06:47 -0700398 *approval*
399 This is only used for ``comment-added`` events. It only matches if
400 the event has a matching approval associated with it. Example:
401 ``code-review: 2`` matches a ``+2`` vote on the code review category.
402 Multiple approvals may be listed.
Antoine Mussob4e809e2012-12-06 16:58:06 +0100403
James E. Blair1fbfceb2014-06-23 14:42:53 -0700404 *email*
James E. Blair6c358e72013-07-29 17:06:47 -0700405 This is used for any event. It takes a regex applied on the performer
Michael Prokop526926a2013-10-24 16:16:57 +0200406 email, i.e. Gerrit account email address. If you want to specify
James E. Blair6c358e72013-07-29 17:06:47 -0700407 several email filters, you must use a YAML list. Make sure to use non
408 greedy matchers and to escapes dots!
James E. Blair1fbfceb2014-06-23 14:42:53 -0700409 Example: ``email: ^.*?@example\.org$``.
James E. Blair6c358e72013-07-29 17:06:47 -0700410
James E. Blair1fbfceb2014-06-23 14:42:53 -0700411 *email_filter* (deprecated)
412 A deprecated alternate spelling of *email*. Only one of *email* or
413 *email_filter* should be used.
414
415 *username*
Joshua Heskethb8a817e2013-12-27 11:21:38 +1100416 This is used for any event. It takes a regex applied on the performer
417 username, i.e. Gerrit account name. If you want to specify several
418 username filters, you must use a YAML list. Make sure to use non greedy
419 matchers and to escapes dots!
James E. Blair1fbfceb2014-06-23 14:42:53 -0700420 Example: ``username: ^jenkins$``.
Joshua Heskethb8a817e2013-12-27 11:21:38 +1100421
James E. Blair1fbfceb2014-06-23 14:42:53 -0700422 *username_filter* (deprecated)
423 A deprecated alternate spelling of *username*. Only one of *username* or
424 *username_filter* should be used.
425
426 *comment*
James E. Blair6c358e72013-07-29 17:06:47 -0700427 This is only used for ``comment-added`` events. It accepts a list of
428 regexes that are searched for in the comment string. If any of these
429 regexes matches a portion of the comment string the trigger is
James E. Blair1fbfceb2014-06-23 14:42:53 -0700430 matched. ``comment: retrigger`` will match when comments
James E. Blair6c358e72013-07-29 17:06:47 -0700431 containing 'retrigger' somewhere in the comment text are added to a
432 change.
Clark Boylanb9bcb402012-06-29 17:44:05 -0700433
James E. Blair1fbfceb2014-06-23 14:42:53 -0700434 *comment_filter* (deprecated)
435 A deprecated alternate spelling of *comment*. Only one of *comment* or
436 *comment_filter* should be used.
437
James E. Blair9c17dbf2014-06-23 14:21:58 -0700438 *require-approval*
James E. Blairc053d022014-01-22 14:57:33 -0800439 This may be used for any event. It requires that a certain kind
440 of approval be present for the current patchset of the change (the
James E. Blair11041d22014-05-02 14:49:53 -0700441 approval could be added by the event in question). It follows the
James E. Blair9c17dbf2014-06-23 14:21:58 -0700442 same syntax as the "approval" pipeline requirement below.
James E. Blairc053d022014-01-22 14:57:33 -0800443
James E. Blair63bb0ef2013-07-29 17:14:51 -0700444 **timer**
445 This trigger will run based on a cron-style time specification.
446 It will enqueue an event into its pipeline for every project
447 defined in the configuration. Any job associated with the
448 pipeline will run in response to that event.
449
450 *time*
451 The time specification in cron syntax. Only the 5 part syntax is
452 supported, not the symbolic names. Example: ``0 0 * * *`` runs
453 at midnight.
454
James E. Blair11041d22014-05-02 14:49:53 -0700455**require**
456 If this section is present, it established pre-requisites for any
457 kind of item entering the Pipeline. Regardless of how the item is
458 to be enqueued (via any trigger or automatic dependency resolution),
459 the conditions specified here must be met or the item will not be
460 enqueued.
461
462 **approval**
463 This requires that a certain kind of approval be present for the
464 current patchset of the change (the approval could be added by the
465 event in question). It takes several sub-parameters, all of which
466 are optional and are combined together so that there must be an
467 approval matching all specified requirements.
468
469 *username*
470 If present, an approval from this username is required.
471
James E. Blair1fbfceb2014-06-23 14:42:53 -0700472 *email*
James E. Blair11041d22014-05-02 14:49:53 -0700473 If present, an approval with this email address is required. It
474 is treated as a regular expression as above.
475
James E. Blair1fbfceb2014-06-23 14:42:53 -0700476 *email-filter* (deprecated)
477 A deprecated alternate spelling of *email*. Only one of *email* or
478 *email_filter* should be used.
479
James E. Blair11041d22014-05-02 14:49:53 -0700480 *older-than*
481 If present, the approval must be older than this amount of time
482 to match. Provide a time interval as a number with a suffix of
483 "w" (weeks), "d" (days), "h" (hours), "m" (minutes), "s"
484 (seconds). Example ``48h`` or ``2d``.
485
486 *newer-than*
487 If present, the approval must be newer than this amount of time
488 to match. Same format as "older-than".
489
490 Any other field is interpreted as a review category and value
491 pair. For example ``verified: 1`` would require that the approval
James E. Blair9c17dbf2014-06-23 14:21:58 -0700492 be for a +1 vote in the "Verified" column. The value may either
493 be a single value or a list: ``verified: [1, 2]`` would match
494 either a +1 or +2 vote.
James E. Blair11041d22014-05-02 14:49:53 -0700495
496 **open**
497 A boolean value (``true`` or ``false``) that indicates whether the change
498 must be open or closed in order to be enqueued.
499
Clark Boylana9702ad2014-05-08 17:17:24 -0700500 **current-patchset**
501 A boolean value (``true`` or ``false``) that indicates whether the change
502 must be the current patchset in order to be enqueued.
503
James E. Blair11041d22014-05-02 14:49:53 -0700504 **status**
505 A string value that corresponds with the status of the change
506 reported by the trigger. For example, when using the Gerrit
507 trigger, status values such as ``NEW`` or ``MERGED`` may be useful.
James E. Blair63bb0ef2013-07-29 17:14:51 -0700508
James E. Blair2fa50962013-01-30 21:50:41 -0800509**dequeue-on-new-patchset**
510 Normally, if a new patchset is uploaded to a change that is in a
511 pipeline, the existing entry in the pipeline will be removed (with
512 jobs canceled and any dependent changes that can no longer merge as
513 well. To suppress this behavior (and allow jobs to continue
514 running), set this to ``false``. Default: ``true``.
515
James E. Blaircdd00072012-06-08 19:17:28 -0700516**success**
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000517 Describes where Zuul should report to if all the jobs complete
518 successfully.
James E. Blaircdd00072012-06-08 19:17:28 -0700519 This section is optional; if it is omitted, Zuul will run jobs and
520 do nothing on success; it will not even report a message to Gerrit.
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000521 If the section is present, the listed reporter plugins will be
522 asked to report on the jobs.
523 Each reporter's value dictionary is handled by the reporter. See
524 reporters for more details.
James E. Blaircdd00072012-06-08 19:17:28 -0700525
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400526**failure**
James E. Blaircdd00072012-06-08 19:17:28 -0700527 Uses the same syntax as **success**, but describes what Zuul should
528 do if at least one job fails.
James E. Blairdc253862012-06-13 17:12:42 -0700529
Joshua Heskethb7179772014-01-30 23:30:46 +1100530**merge-failure**
531 Uses the same syntax as **success**, but describes what Zuul should
532 do if it is unable to merge in the patchset. If no merge-failure
533 reporters are listed then the ``failure`` reporters will be used to
534 notify of unsuccessful merges.
535
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400536**start**
James E. Blairdc253862012-06-13 17:12:42 -0700537 Uses the same syntax as **success**, but describes what Zuul should
Clark Boylan00635dc2012-09-19 14:03:08 -0700538 do when a change is added to the pipeline manager. This can be used,
James E. Blairdc253862012-06-13 17:12:42 -0700539 for example, to reset the value of the Verified review category.
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400540
James E. Blair64ed6f22013-07-10 14:07:23 -0700541**precedence**
542 Indicates how the build scheduler should prioritize jobs for
543 different pipelines. Each pipeline may have one precedence, jobs
544 for pipelines with a higher precedence will be run before ones with
545 lower. The value should be one of ``high``, ``normal``, or ``low``.
546 Default: ``normal``.
547
Clark Boylanc2d19e42014-01-23 14:08:58 -0800548**window**
549 DependentPipelineManagers only. Zuul can rate limit
550 DependentPipelineManagers in a manner similar to TCP flow control.
551 Jobs are only started for changes in the queue if they sit in the
552 actionable window for the pipeline. The initial length of this window
553 is configurable with this value. The value given should be a positive
554 integer value. A value of ``0`` disables rate limiting on the
555 DependentPipelineManager.
556 Default: ``20``.
557
558**window-floor**
559 DependentPipelineManagers only. This is the minimum value for the
560 window described above. Should be a positive non zero integer value.
561 Default: ``3``.
562
563**window-increase-type**
564 DependentPipelineManagers only. This value describes how the window
565 should grow when changes are successfully merged by zuul. A value of
566 ``linear`` indicates that ``window-increase-factor`` should be added
567 to the previous window value. A value of ``exponential`` indicates
568 that ``window-increase-factor`` should be multiplied against the
569 previous window value and the result will become the window size.
570 Default: ``linear``.
571
572**window-increase-factor**
573 DependentPipelineManagers only. The value to be added or mulitplied
574 against the previous window value to determine the new window after
575 successful change merges.
576 Default: ``1``.
577
578**window-decrease-type**
579 DependentPipelineManagers only. This value describes how the window
580 should shrink when changes are not able to be merged by Zuul. A value
581 of ``linear`` indicates that ``window-decrease-factor`` should be
582 subtracted from the previous window value. A value of ``exponential``
583 indicates that ``window-decrease-factor`` should be divided against
584 the previous window value and the result will become the window size.
585 Default: ``exponential``.
586
587**window-decrease-factor**
588 DependentPipelineManagers only. The value to be subtracted or divided
589 against the previous window value to determine the new window after
590 unsuccessful change merges.
591 Default: ``2``.
592
Clark Boylan00635dc2012-09-19 14:03:08 -0700593Some example pipeline configurations are included in the sample layout
594file. The first is called a *check* pipeline::
James E. Blaircdd00072012-06-08 19:17:28 -0700595
596 - name: check
Clark Boylan00635dc2012-09-19 14:03:08 -0700597 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700598 trigger:
599 - event: patchset-created
600 success:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000601 gerrit:
602 verified: 1
James E. Blaircdd00072012-06-08 19:17:28 -0700603 failure:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000604 gerrit:
605 verified: -1
James E. Blaircdd00072012-06-08 19:17:28 -0700606
607This will trigger jobs each time a new patchset (or change) is
608uploaded to Gerrit, and report +/-1 values to Gerrit in the
609``verified`` review category. ::
610
611 - name: gate
Clark Boylan00635dc2012-09-19 14:03:08 -0700612 manager: DependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700613 trigger:
614 - event: comment-added
615 approval:
616 - approved: 1
617 success:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000618 gerrit:
619 verified: 2
620 submit: true
James E. Blaircdd00072012-06-08 19:17:28 -0700621 failure:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000622 gerrit:
623 verified: -2
James E. Blaircdd00072012-06-08 19:17:28 -0700624
625This will trigger jobs whenever a reviewer leaves a vote of ``1`` in the
626``approved`` review category in Gerrit (a non-standard category).
627Changes will be tested in such a way as to guarantee that they will be
628merged exactly as tested, though that will happen in parallel by
629creating a virtual queue of dependent changes and performing
630speculative execution of jobs. ::
631
632 - name: post
Clark Boylan00635dc2012-09-19 14:03:08 -0700633 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700634 trigger:
635 - event: ref-updated
636 ref: ^(?!refs/).*$
637
638This will trigger jobs whenever a change is merged to a named branch
639(e.g., ``master``). No output will be reported to Gerrit. This is
640useful for side effects such as creating per-commit tarballs. ::
641
642 - name: silent
Clark Boylan00635dc2012-09-19 14:03:08 -0700643 manager: IndependentPipelineManager
James E. Blaircdd00072012-06-08 19:17:28 -0700644 trigger:
645 - event: patchset-created
646
647This also triggers jobs when changes are uploaded to Gerrit, but no
648results are reported to Gerrit. This is useful for jobs that are in
Antoine Mussoce333842012-10-16 14:42:35 +0200649development and not yet ready to be presented to developers. ::
650
651 pipelines:
652 - name: post-merge
653 manager: IndependentPipelineManager
654 trigger:
655 - event: change-merged
656 success:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000657 gerrit:
658 force-message: True
Antoine Mussoce333842012-10-16 14:42:35 +0200659 failure:
Joshua Hesketh1879cf72013-08-19 14:13:15 +1000660 gerrit:
661 force-message: True
Antoine Mussoce333842012-10-16 14:42:35 +0200662
663The ``change-merged`` events happen when a change has been merged in the git
664repository. The change is thus closed and Gerrit will not accept modifications
665to the review scoring such as ``code-review`` or ``verified``. By using the
666``force-message: True`` parameter, Zuul will pass ``--force-message`` to the
667``gerrit review`` command, thus making sure the message is actually
668sent back to Gerrit regardless of approval scores.
669That kind of pipeline is nice to run regression or performance tests.
670
671.. note::
672 The ``change-merged`` event does not include the commit sha1 which can be
673 hazardous, it would let you report back to Gerrit though. If you were to
Michael Prokop526926a2013-10-24 16:16:57 +0200674 build a tarball for a specific commit, you should consider instead using
Łukasz Jernaś048acb42014-03-02 18:49:41 +0100675 the ``ref-updated`` event which does include the commit sha1 (but lacks the
Antoine Mussoce333842012-10-16 14:42:35 +0200676 Gerrit change number).
James E. Blaircdd00072012-06-08 19:17:28 -0700677
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100678
679.. _jobs:
680
James E. Blaircdd00072012-06-08 19:17:28 -0700681Jobs
682""""
683
684The jobs section is optional, and can be used to set attributes of
685jobs that are independent of their association with a project. For
686example, if a job should return a customized message on failure, that
687may be specified here. Otherwise, Zuul does not need to be told about
688each job as it builds a list from the project specification.
689
690**name**
691 The name of the job. This field is treated as a regular expression
692 and will be applied to each job that matches.
693
James E. Blairc8a1e052014-02-25 09:29:26 -0800694**queue-name (optional)**
695 Zuul will automatically combine projects that share a job into
696 shared change queues for dependent pipeline managers. In order to
697 report statistics about these queues, it is convenient for them to
698 have names. Zuul can automatically name change queues, however
699 these can grow quite long and are prone to changing as projects in
700 the queue change. If you assign a queue-name to a job, Zuul will
701 use that as the name for the shared change queue that contains that
702 job instead of the automatically generated one. It is an error for
703 a shared change queue to have more than one job with a queue-name if
704 they are not the same.
705
James E. Blaire5a847f2012-07-10 15:29:14 -0700706**failure-message (optional)**
707 The message that should be reported to Gerrit if the job fails.
James E. Blaircdd00072012-06-08 19:17:28 -0700708
James E. Blaire5a847f2012-07-10 15:29:14 -0700709**success-message (optional)**
710 The message that should be reported to Gerrit if the job fails.
James E. Blaircdd00072012-06-08 19:17:28 -0700711
James E. Blair6aea36d2012-12-17 13:03:24 -0800712**failure-pattern (optional)**
713 The URL that should be reported to Gerrit if the job fails.
James E. Blair1f4c2bb2013-04-26 08:40:46 -0700714 Defaults to the build URL or the url_pattern configured in
James E. Blair6aea36d2012-12-17 13:03:24 -0800715 zuul.conf. May be supplied as a string pattern with substitutions
716 as described in url_pattern in :ref:`zuulconf`.
717
718**success-pattern (optional)**
719 The URL that should be reported to Gerrit if the job succeeds.
James E. Blair1f4c2bb2013-04-26 08:40:46 -0700720 Defaults to the build URL or the url_pattern configured in
James E. Blair6aea36d2012-12-17 13:03:24 -0800721 zuul.conf. May be supplied as a string pattern with substitutions
722 as described in url_pattern in :ref:`zuulconf`.
723
James E. Blair222d4982012-07-16 09:31:19 -0700724**hold-following-changes (optional)**
725 This is a boolean that indicates that changes that follow this
Clark Boylan00635dc2012-09-19 14:03:08 -0700726 change in a dependent change pipeline should wait until this job
James E. Blair222d4982012-07-16 09:31:19 -0700727 succeeds before launching. If this is applied to a very short job
728 that can predict whether longer jobs will fail early, this can be
729 used to reduce the number of jobs that Zuul will launch and
730 ultimately have to cancel. In that case, a small amount of
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400731 parallelization of jobs is traded for more efficient use of testing
James E. Blair222d4982012-07-16 09:31:19 -0700732 resources. On the other hand, to apply this to a long running job
733 would largely defeat the parallelization of dependent change testing
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400734 that is the main feature of Zuul. Default: ``false``.
James E. Blair222d4982012-07-16 09:31:19 -0700735
James E. Blaire5a847f2012-07-10 15:29:14 -0700736**branch (optional)**
James E. Blaircdd00072012-06-08 19:17:28 -0700737 This job should only be run on matching branches. This field is
738 treated as a regular expression and multiple branches may be
739 listed.
740
James E. Blair70c71582013-03-06 08:50:50 -0800741**files (optional)**
742 This job should only be run if at least one of the files involved in
743 the change (added, deleted, or modified) matches at least one of the
744 file patterns listed here. This field is treated as a regular
745 expression and multiple expressions may be listed.
746
Mathieu Gagnéd6d2a642013-06-11 20:59:58 -0400747**voting (optional)**
748 Boolean value (``true`` or ``false``) that indicates whatever
749 a job is voting or not. Default: ``true``.
750
James E. Blaire5a847f2012-07-10 15:29:14 -0700751**parameter-function (optional)**
752 Specifies a function that should be applied to the parameters before
753 the job is launched. The function should be defined in a python file
754 included with the :ref:`includes` directive. The function
755 should have the following signature:
756
James E. Blaird0470972013-07-29 10:05:43 -0700757 .. function:: parameters(item, job, parameters)
James E. Blaire5a847f2012-07-10 15:29:14 -0700758
759 Manipulate the parameters passed to a job before a build is
760 launched. The ``parameters`` dictionary will already contain the
761 standard Zuul job parameters, and is expected to be modified
762 in-place.
763
James E. Blaird78576a2013-07-09 10:39:17 -0700764 :param item: the current queue item
765 :type item: zuul.model.QueueItem
James E. Blaird0470972013-07-29 10:05:43 -0700766 :param job: the job about to be run
767 :type job: zuul.model.Job
James E. Blaire5a847f2012-07-10 15:29:14 -0700768 :param parameters: parameters to be passed to the job
769 :type parameters: dict
770
James E. Blair1f4c2bb2013-04-26 08:40:46 -0700771 If the parameter **ZUUL_NODE** is set by this function, then it will
772 be used to specify on what node (or class of node) the job should be
773 run.
774
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100775**swift**
776 If :ref:`swift` is configured then each job can define a destination
777 container for the builder to place logs and/or assets into. Multiple
778 containers can be listed for each job by providing a unique ``name``.
779
780 *name*
781 Set an identifying name for the container. This is used in the
782 parameter key sent to the builder. For example if it ``logs`` then
783 one of the parameters sent will be ``SWIFT_logs_CONTAINER``
784 (case-sensitive).
785
786 Each of the defaults defined in :ref:`swift` can be overwritten as:
787
788 *container* (optional)
789 Container name to place the log into
790 ``For example, logs``
791
792 *expiry* (optional)
793 How long the signed destination should be available for
794
James E. Blaird6500232014-06-23 15:05:48 -0700795 *max-file-size** (optional)
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100796 The maximum size of an individual file
797
James E. Blaird6500232014-06-23 15:05:48 -0700798 *max_file_size** (optional, deprecated)
799 A deprecated alternate spelling of *max-file-size*.
800
801 *max-file-count* (optional)
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100802 The maximum number of separate files to allow
803
James E. Blaird6500232014-06-23 15:05:48 -0700804 *max_file_count* (optional, deprecated)
805 A deprecated alternate spelling of *max-file-count*.
806
807 *logserver-prefix*
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100808 Provide a URL to the CDN or logserver app so that a worker knows
809 what URL to return.
810 ``For example: http://logs.example.org/server.app?obj=``
James E. Blaird6500232014-06-23 15:05:48 -0700811 The worker should return the logserver-prefix url and the object
Joshua Hesketh36c3fa52014-01-22 11:40:52 +1100812 path as the URL in the results data packet.
813
James E. Blaird6500232014-06-23 15:05:48 -0700814 *logserver_prefix* (deprecated)
815 A deprecated alternate spelling of *logserver-prefix*.
816
James E. Blaircdd00072012-06-08 19:17:28 -0700817Here is an example of setting the failure message for jobs that check
818whether a change merges cleanly::
819
820 - name: ^.*-merge$
821 failure-message: This change was unable to be automatically merged
822 with the current state of the repository. Please rebase your
823 change and upload a new patchset.
824
825Projects
826""""""""
827
Clark Boylan00635dc2012-09-19 14:03:08 -0700828The projects section indicates what jobs should be run in each pipeline
James E. Blaircdd00072012-06-08 19:17:28 -0700829for events associated with each project. It contains a list of
830projects. Here is an example::
831
832 - name: example/project
833 check:
834 - project-merge:
835 - project-unittest
Clark Boylan00635dc2012-09-19 14:03:08 -0700836 - project-pep8
837 - project-pyflakes
James E. Blaircdd00072012-06-08 19:17:28 -0700838 gate:
839 - project-merge:
840 - project-unittest
Clark Boylan00635dc2012-09-19 14:03:08 -0700841 - project-pep8
842 - project-pyflakes
James E. Blaircdd00072012-06-08 19:17:28 -0700843 post:
844 - project-publish
845
846**name**
847 The name of the project (as known by Gerrit).
848
James E. Blair19deff22013-08-25 13:17:35 -0700849**merge-mode (optional)**
850 An optional value that indicates what strategy should be used to
851 merge changes to this project. Supported values are:
852
853 ** merge-resolve **
854 Equivalent to 'git merge -s resolve'. This corresponds closely to
855 what Gerrit performs (using JGit) for a project if the "Merge if
856 necessary" merge mode is selected and "Automatically resolve
857 conflicts" is checked. This is the default.
858
859 ** merge **
860 Equivalent to 'git merge'.
861
862 ** cherry-pick **
863 Equivalent to 'git cherry-pick'.
864
Clark Boylan00635dc2012-09-19 14:03:08 -0700865This is followed by a section for each of the pipelines defined above.
866Pipelines may be omitted if no jobs should run for this project in a
867given pipeline. Within the pipeline section, the jobs that should be
James E. Blaircdd00072012-06-08 19:17:28 -0700868executed are listed. If a job is entered as a dictionary key, then
869jobs contained within that key are only executed if the key job
870succeeds. In the above example, project-unittest, project-pep8, and
871project-pyflakes are only executed if project-merge succeeds. This
872can help avoid running unnecessary jobs.
873
James E. Blair18c64442014-03-18 10:14:45 -0700874The special job named ``noop`` is internal to Zuul and will always
875return ``SUCCESS`` immediately. This can be useful if you require
876that all changes be processed by a pipeline but a project has no jobs
877that can be run on it.
878
Paul Belangerffef9e42013-02-11 22:15:18 -0500879.. 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 -0700880
Antoine Musso80edd5a2013-02-13 15:37:53 +0100881Project Templates
882"""""""""""""""""
883
Michael Prokop526926a2013-10-24 16:16:57 +0200884Whenever you have lot of similar projects (such as plugins for a project) you
Antoine Musso80edd5a2013-02-13 15:37:53 +0100885will most probably want to use the same pipeline configurations. The
886project templates let you define pipelines and job name templates to trigger.
887One can then just apply the template on its project which make it easier to
Michael Prokop526926a2013-10-24 16:16:57 +0200888update several similar projects. As an example::
Antoine Musso80edd5a2013-02-13 15:37:53 +0100889
890 project-templates:
891 # Name of the template
892 - name: plugin-triggering
893 # Definition of pipelines just like for a `project`
894 check:
895 - '{jobprefix}-merge':
896 - '{jobprefix}-pep8'
897 - '{jobprefix}-pyflakes'
898 gate:
899 - '{jobprefix}-merge':
900 - '{jobprefix}-unittest'
901 - '{jobprefix}-pep8'
902 - '{jobprefix}-pyflakes'
903
904In your projects definition, you will then apply the template using the template
905key::
906
907 projects:
908 - name: plugin/foobar
909 template:
910 - name: plugin-triggering
911 jobprefix: plugin-foobar
912
James E. Blairaea6cf62013-12-16 15:38:12 -0800913You can pass several parameters to a template. A ``parameter`` value
914will be used for expansion of ``{parameter}`` in the template
915strings. The parameter ``name`` will be automatically provided and
916will contain the short name of the project, that is the portion of the
917project name after the last ``/`` character.
James E. Blaircdd00072012-06-08 19:17:28 -0700918
James E. Blair3e98c022013-12-16 15:25:38 -0800919Multiple templates can be combined in a project, and the jobs from all
920of those templates will be added to the project. Individual jobs may
921also be added::
922
923 projects:
924 - name: plugin/foobar
925 template:
926 - name: plugin-triggering
927 jobprefix: plugin-foobar
928 - name: plugin-extras
929 jobprefix: plugin-foobar
930 check:
931 - foobar-extra-special-job
932
933The order of the jobs listed in the project (which only affects the
934order of jobs listed on the report) will be the jobs from each
935template in the order listed, followed by any jobs individually listed
936for the project.
937
938Note that if multiple templates are used for a project and one
939template specifies a job that is also specified in another template,
James E. Blair12a92b12014-03-26 11:54:53 -0700940or specified in the project itself, the configuration defined by
941either the last template or the project itself will take priority.
James E. Blair3e98c022013-12-16 15:25:38 -0800942
James E. Blaircdd00072012-06-08 19:17:28 -0700943logging.conf
944~~~~~~~~~~~~
945This file is optional. If provided, it should be a standard
946:mod:`logging.config` module configuration file. If not present, Zuul will
947output all log messages of DEBUG level or higher to the console.
948
949Starting Zuul
950-------------
951
952To start Zuul, run **zuul-server**::
953
Antoine Mussob3aa8282013-04-19 15:16:59 +0200954 usage: zuul-server [-h] [-c CONFIG] [-l LAYOUT] [-d] [-t] [--version]
James E. Blaircdd00072012-06-08 19:17:28 -0700955
956 Project gating system.
957
958 optional arguments:
959 -h, --help show this help message and exit
960 -c CONFIG specify the config file
Antoine Mussob3aa8282013-04-19 15:16:59 +0200961 -l LAYOUT specify the layout file
James E. Blaircdd00072012-06-08 19:17:28 -0700962 -d do not run as a daemon
Antoine Mussob3aa8282013-04-19 15:16:59 +0200963 -t validate layout file syntax
964 --version show zuul version
James E. Blaircdd00072012-06-08 19:17:28 -0700965
966You may want to use the ``-d`` argument while you are initially setting
967up Zuul so you can detect any configuration errors quickly. Under
968normal operation, omit ``-d`` and let Zuul run as a daemon.
969
970If you send signal 1 (SIGHUP) to the zuul-server process, Zuul will
971stop executing new jobs, wait until all executing jobs are finished,
972reload its configuration, and resume. Any values in any of the
973configuration files may be changed, except the location of Zuul's PID
974file (a change to that will be ignored until Zuul is restarted).
Clark Boylanf231fa22013-02-08 12:28:53 -0800975
976If you send a SIGUSR1 to the zuul-server process, Zuul will stop
977executing new jobs, wait until all executing jobs are finished,
978then exit. While waiting to exit Zuul will queue Gerrit events and
979save these events prior to exiting. When Zuul starts again it will
980read these saved events and act on them.
Jeremy Stanley93e05f42013-03-08 17:29:17 +0000981
Michael Prokop526926a2013-10-24 16:16:57 +0200982If you need to abort Zuul and intend to manually requeue changes for
Jeremy Stanley93e05f42013-03-08 17:29:17 +0000983jobs which were running in its pipelines, prior to terminating you can
984use the zuul-changes.py tool script to simplify the process. For
985example, this would give you a list of Gerrit commands to reverify or
986recheck changes for the gate and check pipelines respectively::
987
988 ./tools/zuul-changes.py --review-host=review.openstack.org \
989 http://zuul.openstack.org/ gate 'reverify no bug'
990 ./tools/zuul-changes.py --review-host=review.openstack.org \
991 http://zuul.openstack.org/ check 'recheck no bug'
Clark Boylanfba9b242013-08-20 10:11:17 -0700992
993If you send a SIGUSR2 to the zuul-server process, Zuul will dump a stack
994trace for each running thread into its debug log. This is useful for
995tracking down deadlock or otherwise slow threads.