James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 1 | :title: Zuul |
| 2 | |
| 3 | Zuul |
| 4 | ==== |
| 5 | |
| 6 | Configuration |
| 7 | ------------- |
| 8 | |
| 9 | Zuul has three configuration files: |
| 10 | |
| 11 | **zuul.conf** |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 12 | Connection information for Gerrit and Gearman, locations of the |
| 13 | other config files |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 14 | **layout.yaml** |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 15 | Project and pipeline configuration -- what Zuul does |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 16 | **logging.conf** |
| 17 | Python logging config |
| 18 | |
| 19 | Examples of each of the three files can be found in the etc/ directory |
| 20 | of the source distribution. |
| 21 | |
James E. Blair | 6aea36d | 2012-12-17 13:03:24 -0800 | [diff] [blame] | 22 | .. _zuulconf: |
| 23 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 24 | zuul.conf |
| 25 | ~~~~~~~~~ |
| 26 | |
| 27 | Zuul will look for ``/etc/zuul/zuul.conf`` or ``~/zuul.conf`` to |
| 28 | bootstrap its configuration. Alternately, you may specify ``-c |
| 29 | /path/to/zuul.conf`` on the command line. |
| 30 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 31 | Gerrit and Gearman connection information are each described in a |
| 32 | section of zuul.conf. The location of the other two configuration |
| 33 | files (as well as the location of the PID file when running Zuul as a |
| 34 | server) are specified in a third section. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 35 | |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 36 | The three sections of this config and their options are documented below. |
| 37 | You can also find an example zuul.conf file in the git |
| 38 | `repository |
K Jonathan Harker | 97e457e | 2013-02-26 13:29:38 -0800 | [diff] [blame] | 39 | <https://github.com/openstack-infra/zuul/blob/master/etc/zuul.conf-sample>`_ |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 40 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 41 | gearman |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 42 | """"""" |
| 43 | |
| 44 | **server** |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 45 | Hostname or IP address of the Gearman server. |
| 46 | ``server=gearman.example.com`` |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 47 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 48 | **port** |
| 49 | Port on which the Gearman server is listening |
| 50 | ``port=4730`` |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 51 | |
James E. Blair | 77cc7b8 | 2013-07-15 13:22:37 -0700 | [diff] [blame] | 52 | gearman_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 Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 63 | gerrit |
| 64 | """""" |
| 65 | |
| 66 | **server** |
| 67 | FQDN of Gerrit server. |
| 68 | ``server=review.example.com`` |
| 69 | |
Antoine Musso | 2747501 | 2012-11-26 09:53:01 +0100 | [diff] [blame] | 70 | **baseurl** |
| 71 | Optional: path to Gerrit web interface. Defaults to ``https://<value |
| 72 | of server>/``. ``baseurl=https://review.example.com/review_site/`` |
| 73 | |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 74 | **user** |
| 75 | User name to use when logging into above server via ssh. |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 76 | ``user=zuul`` |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 77 | |
| 78 | **sshkey** |
| 79 | Path to SSH key to use when logging into above server. |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 80 | ``sshkey=/home/zuul/.ssh/id_rsa`` |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 81 | |
| 82 | zuul |
| 83 | """" |
| 84 | |
| 85 | **layout_config** |
| 86 | Path to layout config file. |
| 87 | ``layout_config=/etc/zuul/layout.yaml`` |
| 88 | |
| 89 | **log_config** |
| 90 | Path to log config file. |
| 91 | ``log_config=/etc/zuul/logging.yaml`` |
| 92 | |
| 93 | **pidfile** |
| 94 | Path to PID lock file. |
| 95 | ``pidfile=/var/run/zuul/zuul.pid`` |
| 96 | |
| 97 | **state_dir** |
| 98 | Path to directory that Zuul should save state to. |
| 99 | ``state_dir=/var/lib/zuul`` |
| 100 | |
| 101 | **git_dir** |
| 102 | Directory that Zuul should clone local git repositories to. |
| 103 | ``git_dir=/var/lib/zuul/git`` |
| 104 | |
Paul Belanger | b67aba1 | 2013-05-13 19:22:14 -0400 | [diff] [blame] | 105 | **git_user_email** |
| 106 | Optional: Value to pass to `git config user.email`. |
| 107 | ``git_user_email=zuul@example.com`` |
| 108 | |
| 109 | **git_user_name** |
| 110 | Optional: Value to pass to `git config user.name`. |
| 111 | ``git_user_name=zuul`` |
| 112 | |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 113 | **push_change_refs** |
| 114 | Boolean value (``true`` or ``false``) that determines if Zuul should |
| 115 | push change refs to the git origin server for the git repositories in |
| 116 | git_dir. |
| 117 | ``push_change_refs=true`` |
| 118 | |
James E. Blair | 0ac6c01 | 2013-04-26 09:04:23 -0700 | [diff] [blame] | 119 | **report_times** |
| 120 | Boolean value (``true`` or ``false``) that determines if Zuul should |
| 121 | include elapsed times for each job in the textual report. |
| 122 | ``report_times=true`` |
| 123 | |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 124 | **status_url** |
| 125 | URL that will be posted in Zuul comments made to Gerrit changes when |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 126 | starting jobs for a change. |
| 127 | ``status_url=https://zuul.example.com/status`` |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 128 | |
| 129 | **url_pattern** |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 130 | If you are storing build logs external to the system that originally |
| 131 | ran jobs and wish to link to those logs when Zuul makes comments on |
| 132 | Gerrit changes for completed jobs this setting configures what the |
| 133 | URLs for those links should be. |
Clark Boylan | 9b67090 | 2012-09-28 13:47:56 -0700 | [diff] [blame] | 134 | ``http://logs.example.com/{change.number}/{change.patchset}/{pipeline.name}/{job.name}/{build.number}`` |
| 135 | |
James E. Blair | 8fef52b | 2013-08-17 17:32:50 -0700 | [diff] [blame] | 136 | **job_name_in_report** |
| 137 | Boolean value (``true`` or ``false``) that indicates whether the |
| 138 | job name should be included in the report (normally only the URL |
| 139 | is included). Defaults to ``false``. |
| 140 | ``job_name_in_report=true`` |
| 141 | |
Arx Cruz | b1b010d | 2013-10-28 19:49:59 -0200 | [diff] [blame] | 142 | **zuul_url** |
| 143 | URL of Zuul's git repos, accessible to test workers. |
| 144 | Usually "http://zuul.example.com/p". |
| 145 | |
Joshua Hesketh | 5fea867 | 2013-08-19 17:32:01 +1000 | [diff] [blame] | 146 | smtp |
| 147 | """" |
| 148 | |
| 149 | **server** |
| 150 | SMTP server hostname or address to use. |
| 151 | ``server=localhost`` |
| 152 | |
| 153 | **default_from** |
| 154 | Who the email should appear to be sent from when emailing the report. |
| 155 | This can be overridden by individual pipelines. |
| 156 | ``default_from=zuul@example.com`` |
| 157 | |
| 158 | **default_to** |
| 159 | Who the report should be emailed to by default. |
| 160 | This can be overridden by individual pipelines. |
| 161 | ``default_to=you@example.com`` |
| 162 | |
James E. Blair | 87650fa | 2014-01-08 11:43:23 +0800 | [diff] [blame] | 163 | replication |
| 164 | """"""""""" |
| 165 | |
| 166 | Zuul can push the refs it creates to any number of servers. To do so, |
| 167 | list the git push URLs in this section, one per line as follows:: |
| 168 | |
| 169 | [replication] |
| 170 | url1=ssh://user@host1.example.com:port/path/to/repo |
| 171 | url2=ssh://user@host2.example.com:port/path/to/repo |
| 172 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 173 | layout.yaml |
| 174 | ~~~~~~~~~~~ |
| 175 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 176 | This is the main configuration file for Zuul, where all of the pipelines |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 177 | and projects are defined, what tests should be run, and what actions |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 178 | Zuul should perform. There are three sections: pipelines, jobs, and |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 179 | projects. |
| 180 | |
James E. Blair | e5a847f | 2012-07-10 15:29:14 -0700 | [diff] [blame] | 181 | .. _includes: |
| 182 | |
| 183 | Includes |
| 184 | """""""" |
| 185 | |
| 186 | Custom functions to be used in Zuul's configuration may be provided |
| 187 | using the ``includes`` directive. It accepts a list of files to |
| 188 | include, and currently supports one type of inclusion, a python file:: |
| 189 | |
| 190 | includes: |
| 191 | - python-file: local_functions.py |
| 192 | |
| 193 | **python-file** |
| 194 | The path to a python file. The file will be loaded and objects that |
| 195 | it defines will be placed in a special environment which can be |
| 196 | referenced in the Zuul configuration. Currently only the |
| 197 | parameter-function attribute of a Job uses this feature. |
| 198 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 199 | Pipelines |
| 200 | """"""""" |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 201 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 202 | Zuul can have any number of independent pipelines. Whenever a matching |
| 203 | Gerrit event is found for a pipeline, that event is added to the |
| 204 | pipeline, and the jobs specified for that pipeline are run. When all |
| 205 | jobs specified for the pipeline that were triggered by an event are |
| 206 | completed, Zuul reports back to Gerrit the results. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 207 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 208 | There are no pre-defined pipelines in Zuul, rather you can define |
| 209 | whatever pipelines you need in the layout file. This is a very flexible |
| 210 | system that can accommodate many kinds of workflows. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 211 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 212 | Here is a quick example of a pipeline definition followed by an |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 213 | explanation of each of the parameters:: |
| 214 | |
| 215 | - name: check |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 216 | manager: IndependentPipelineManager |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 217 | trigger: |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 218 | gerrit: |
| 219 | - event: patchset-created |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 220 | success: |
| 221 | verified: 1 |
| 222 | failure: |
| 223 | verified: -1 |
| 224 | |
| 225 | **name** |
| 226 | This is used later in the project definition to indicate what jobs |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 227 | should be run for events in the pipeline. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 228 | |
James E. Blair | 8dbd56a | 2012-12-22 10:55:10 -0800 | [diff] [blame] | 229 | **description** |
| 230 | This is an optional field that may be used to provide a textual |
| 231 | description of the pipeline. |
| 232 | |
James E. Blair | 5637019 | 2013-01-14 15:47:28 -0800 | [diff] [blame] | 233 | **success-message** |
| 234 | An optional field that supplies the introductory text in message |
| 235 | reported back to Gerrit when all the voting builds are successful. |
| 236 | Defaults to "Build successful." |
| 237 | |
| 238 | **failure-message** |
| 239 | An optional field that supplies the introductory text in message |
| 240 | reported back to Gerrit when at least one voting build fails. |
| 241 | Defaults to "Build failed." |
| 242 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 243 | **manager** |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 244 | There are currently two schemes for managing pipelines: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 245 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 246 | *IndependentPipelineManager* |
| 247 | Every event in this pipeline should be treated as independent of |
| 248 | other events in the pipeline. This is appropriate when the order of |
| 249 | events in the pipeline doesn't matter because the results of the |
| 250 | actions this pipeline performs can not affect other events in the |
| 251 | pipeline. For example, when a change is first uploaded for review, |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 252 | you may want to run tests on that change to provide early feedback |
| 253 | to reviewers. At the end of the tests, the change is not going to |
| 254 | be merged, so it is safe to run these tests in parallel without |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 255 | regard to any other changes in the pipeline. They are independent. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 256 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 257 | Another type of pipeline that is independent is a post-merge |
| 258 | pipeline. In that case, the changes have already merged, so the |
| 259 | results can not affect any other events in the pipeline. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 260 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 261 | *DependentPipelineManager* |
| 262 | The dependent pipeline manager is designed for gating. It ensures |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 263 | that every change is tested exactly as it is going to be merged |
| 264 | into the repository. An ideal gating system would test one change |
| 265 | at a time, applied to the tip of the repository, and only if that |
| 266 | change passed tests would it be merged. Then the next change in |
| 267 | line would be tested the same way. In order to achieve parallel |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 268 | testing of changes, the dependent pipeline manager performs |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 269 | speculative execution on changes. It orders changes based on |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 270 | their entry into the pipeline. It begins testing all changes in |
| 271 | parallel, assuming that each change ahead in the pipeline will pass |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 272 | its tests. If they all succeed, all the changes can be tested and |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 273 | merged in parallel. If a change near the front of the pipeline |
| 274 | fails its tests, each change behind it ignores whatever tests have |
| 275 | been completed and are tested again without the change in front. |
| 276 | This way gate tests may run in parallel but still be tested |
| 277 | correctly, exactly as they will appear in the repository when |
| 278 | merged. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 279 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 280 | One important characteristic of the DependentPipelineManager is that |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 281 | it analyzes the jobs that are triggered by different projects, and |
| 282 | if those projects have jobs in common, it treats those projects as |
| 283 | related, and they share a single virtual queue of changes. Thus, |
| 284 | if there is a job that performs integration testing on two |
| 285 | projects, those two projects will automatically share a virtual |
| 286 | change queue. If a third project does not invoke that job, it |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 287 | will be part of a separate virtual change queue, and changes to |
| 288 | it will not depend on changes to the first two jobs. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 289 | |
| 290 | For more detail on the theory and operation of Zuul's |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 291 | DependentPipelineManager, see: :doc:`gating`. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 292 | |
| 293 | **trigger** |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 294 | Exactly one trigger source must be supplied for each pipeline. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 295 | Triggers are not exclusive -- matching events may be placed in |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 296 | multiple pipelines, and they will behave independently in each of |
| 297 | the pipelines they match. You may select from the following: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 298 | |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 299 | **gerrit** |
| 300 | This describes what Gerrit events should be placed in the |
| 301 | pipeline. Multiple gerrit triggers may be listed. Further |
| 302 | parameters describe the kind of events that match: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 303 | |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 304 | *event* |
| 305 | The event name from gerrit. Examples: ``patchset-created``, |
| 306 | ``comment-added``, ``ref-updated``. This field is treated as a |
| 307 | regular expression. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 308 | |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 309 | *branch* |
| 310 | The branch associated with the event. Example: ``master``. This |
| 311 | field is treated as a regular expression, and multiple branches may |
| 312 | be listed. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 313 | |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 314 | *ref* |
| 315 | On ref-updated events, the branch parameter is not used, instead the |
| 316 | ref is provided. Currently Gerrit has the somewhat idiosyncratic |
| 317 | behavior of specifying bare refs for branch names (e.g., ``master``), |
| 318 | but full ref names for other kinds of refs (e.g., ``refs/tags/foo``). |
| 319 | Zuul matches what you put here exactly against what Gerrit |
| 320 | provides. This field is treated as a regular expression, and |
| 321 | multiple refs may be listed. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 322 | |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 323 | *approval* |
| 324 | This is only used for ``comment-added`` events. It only matches if |
| 325 | the event has a matching approval associated with it. Example: |
| 326 | ``code-review: 2`` matches a ``+2`` vote on the code review category. |
| 327 | Multiple approvals may be listed. |
Antoine Musso | b4e809e | 2012-12-06 16:58:06 +0100 | [diff] [blame] | 328 | |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 329 | *email_filter* |
| 330 | This is used for any event. It takes a regex applied on the performer |
Michael Prokop | 526926a | 2013-10-24 16:16:57 +0200 | [diff] [blame] | 331 | email, i.e. Gerrit account email address. If you want to specify |
James E. Blair | 6c358e7 | 2013-07-29 17:06:47 -0700 | [diff] [blame] | 332 | several email filters, you must use a YAML list. Make sure to use non |
| 333 | greedy matchers and to escapes dots! |
| 334 | Example: ``email_filter: ^.*?@example\.org$``. |
| 335 | |
| 336 | *comment_filter* |
| 337 | This is only used for ``comment-added`` events. It accepts a list of |
| 338 | regexes that are searched for in the comment string. If any of these |
| 339 | regexes matches a portion of the comment string the trigger is |
| 340 | matched. ``comment_filter: retrigger`` will match when comments |
| 341 | containing 'retrigger' somewhere in the comment text are added to a |
| 342 | change. |
Clark Boylan | b9bcb40 | 2012-06-29 17:44:05 -0700 | [diff] [blame] | 343 | |
James E. Blair | 63bb0ef | 2013-07-29 17:14:51 -0700 | [diff] [blame] | 344 | **timer** |
| 345 | This trigger will run based on a cron-style time specification. |
| 346 | It will enqueue an event into its pipeline for every project |
| 347 | defined in the configuration. Any job associated with the |
| 348 | pipeline will run in response to that event. |
| 349 | |
| 350 | *time* |
| 351 | The time specification in cron syntax. Only the 5 part syntax is |
| 352 | supported, not the symbolic names. Example: ``0 0 * * *`` runs |
| 353 | at midnight. |
| 354 | |
| 355 | |
James E. Blair | 2fa5096 | 2013-01-30 21:50:41 -0800 | [diff] [blame] | 356 | **dequeue-on-new-patchset** |
| 357 | Normally, if a new patchset is uploaded to a change that is in a |
| 358 | pipeline, the existing entry in the pipeline will be removed (with |
| 359 | jobs canceled and any dependent changes that can no longer merge as |
| 360 | well. To suppress this behavior (and allow jobs to continue |
| 361 | running), set this to ``false``. Default: ``true``. |
| 362 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 363 | **success** |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 364 | Describes where Zuul should report to if all the jobs complete |
| 365 | successfully. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 366 | This section is optional; if it is omitted, Zuul will run jobs and |
| 367 | do nothing on success; it will not even report a message to Gerrit. |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 368 | If the section is present, the listed reporter plugins will be |
| 369 | asked to report on the jobs. |
| 370 | Each reporter's value dictionary is handled by the reporter. See |
| 371 | reporters for more details. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 372 | |
Mathieu Gagné | d6d2a64 | 2013-06-11 20:59:58 -0400 | [diff] [blame] | 373 | **failure** |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 374 | Uses the same syntax as **success**, but describes what Zuul should |
| 375 | do if at least one job fails. |
James E. Blair | dc25386 | 2012-06-13 17:12:42 -0700 | [diff] [blame] | 376 | |
Mathieu Gagné | d6d2a64 | 2013-06-11 20:59:58 -0400 | [diff] [blame] | 377 | **start** |
James E. Blair | dc25386 | 2012-06-13 17:12:42 -0700 | [diff] [blame] | 378 | Uses the same syntax as **success**, but describes what Zuul should |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 379 | do when a change is added to the pipeline manager. This can be used, |
James E. Blair | dc25386 | 2012-06-13 17:12:42 -0700 | [diff] [blame] | 380 | for example, to reset the value of the Verified review category. |
Mathieu Gagné | d6d2a64 | 2013-06-11 20:59:58 -0400 | [diff] [blame] | 381 | |
James E. Blair | 64ed6f2 | 2013-07-10 14:07:23 -0700 | [diff] [blame] | 382 | **precedence** |
| 383 | Indicates how the build scheduler should prioritize jobs for |
| 384 | different pipelines. Each pipeline may have one precedence, jobs |
| 385 | for pipelines with a higher precedence will be run before ones with |
| 386 | lower. The value should be one of ``high``, ``normal``, or ``low``. |
| 387 | Default: ``normal``. |
| 388 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 389 | Some example pipeline configurations are included in the sample layout |
| 390 | file. The first is called a *check* pipeline:: |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 391 | |
| 392 | - name: check |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 393 | manager: IndependentPipelineManager |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 394 | trigger: |
| 395 | - event: patchset-created |
| 396 | success: |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 397 | gerrit: |
| 398 | verified: 1 |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 399 | failure: |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 400 | gerrit: |
| 401 | verified: -1 |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 402 | |
| 403 | This will trigger jobs each time a new patchset (or change) is |
| 404 | uploaded to Gerrit, and report +/-1 values to Gerrit in the |
| 405 | ``verified`` review category. :: |
| 406 | |
| 407 | - name: gate |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 408 | manager: DependentPipelineManager |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 409 | trigger: |
| 410 | - event: comment-added |
| 411 | approval: |
| 412 | - approved: 1 |
| 413 | success: |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 414 | gerrit: |
| 415 | verified: 2 |
| 416 | submit: true |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 417 | failure: |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 418 | gerrit: |
| 419 | verified: -2 |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 420 | |
| 421 | This will trigger jobs whenever a reviewer leaves a vote of ``1`` in the |
| 422 | ``approved`` review category in Gerrit (a non-standard category). |
| 423 | Changes will be tested in such a way as to guarantee that they will be |
| 424 | merged exactly as tested, though that will happen in parallel by |
| 425 | creating a virtual queue of dependent changes and performing |
| 426 | speculative execution of jobs. :: |
| 427 | |
| 428 | - name: post |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 429 | manager: IndependentPipelineManager |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 430 | trigger: |
| 431 | - event: ref-updated |
| 432 | ref: ^(?!refs/).*$ |
| 433 | |
| 434 | This will trigger jobs whenever a change is merged to a named branch |
| 435 | (e.g., ``master``). No output will be reported to Gerrit. This is |
| 436 | useful for side effects such as creating per-commit tarballs. :: |
| 437 | |
| 438 | - name: silent |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 439 | manager: IndependentPipelineManager |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 440 | trigger: |
| 441 | - event: patchset-created |
| 442 | |
| 443 | This also triggers jobs when changes are uploaded to Gerrit, but no |
| 444 | results are reported to Gerrit. This is useful for jobs that are in |
Antoine Musso | ce33384 | 2012-10-16 14:42:35 +0200 | [diff] [blame] | 445 | development and not yet ready to be presented to developers. :: |
| 446 | |
| 447 | pipelines: |
| 448 | - name: post-merge |
| 449 | manager: IndependentPipelineManager |
| 450 | trigger: |
| 451 | - event: change-merged |
| 452 | success: |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 453 | gerrit: |
| 454 | force-message: True |
Antoine Musso | ce33384 | 2012-10-16 14:42:35 +0200 | [diff] [blame] | 455 | failure: |
Joshua Hesketh | 1879cf7 | 2013-08-19 14:13:15 +1000 | [diff] [blame] | 456 | gerrit: |
| 457 | force-message: True |
Antoine Musso | ce33384 | 2012-10-16 14:42:35 +0200 | [diff] [blame] | 458 | |
| 459 | The ``change-merged`` events happen when a change has been merged in the git |
| 460 | repository. The change is thus closed and Gerrit will not accept modifications |
| 461 | to the review scoring such as ``code-review`` or ``verified``. By using the |
| 462 | ``force-message: True`` parameter, Zuul will pass ``--force-message`` to the |
| 463 | ``gerrit review`` command, thus making sure the message is actually |
| 464 | sent back to Gerrit regardless of approval scores. |
| 465 | That kind of pipeline is nice to run regression or performance tests. |
| 466 | |
| 467 | .. note:: |
| 468 | The ``change-merged`` event does not include the commit sha1 which can be |
| 469 | hazardous, it would let you report back to Gerrit though. If you were to |
Michael Prokop | 526926a | 2013-10-24 16:16:57 +0200 | [diff] [blame] | 470 | build a tarball for a specific commit, you should consider instead using |
Antoine Musso | ce33384 | 2012-10-16 14:42:35 +0200 | [diff] [blame] | 471 | the ``ref-updated`` event which does include the commit sha1 (but lack the |
| 472 | Gerrit change number). |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 473 | |
| 474 | Jobs |
| 475 | """" |
| 476 | |
| 477 | The jobs section is optional, and can be used to set attributes of |
| 478 | jobs that are independent of their association with a project. For |
| 479 | example, if a job should return a customized message on failure, that |
| 480 | may be specified here. Otherwise, Zuul does not need to be told about |
| 481 | each job as it builds a list from the project specification. |
| 482 | |
| 483 | **name** |
| 484 | The name of the job. This field is treated as a regular expression |
| 485 | and will be applied to each job that matches. |
| 486 | |
James E. Blair | e5a847f | 2012-07-10 15:29:14 -0700 | [diff] [blame] | 487 | **failure-message (optional)** |
| 488 | The message that should be reported to Gerrit if the job fails. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 489 | |
James E. Blair | e5a847f | 2012-07-10 15:29:14 -0700 | [diff] [blame] | 490 | **success-message (optional)** |
| 491 | The message that should be reported to Gerrit if the job fails. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 492 | |
James E. Blair | 6aea36d | 2012-12-17 13:03:24 -0800 | [diff] [blame] | 493 | **failure-pattern (optional)** |
| 494 | The URL that should be reported to Gerrit if the job fails. |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 495 | Defaults to the build URL or the url_pattern configured in |
James E. Blair | 6aea36d | 2012-12-17 13:03:24 -0800 | [diff] [blame] | 496 | zuul.conf. May be supplied as a string pattern with substitutions |
| 497 | as described in url_pattern in :ref:`zuulconf`. |
| 498 | |
| 499 | **success-pattern (optional)** |
| 500 | The URL that should be reported to Gerrit if the job succeeds. |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 501 | Defaults to the build URL or the url_pattern configured in |
James E. Blair | 6aea36d | 2012-12-17 13:03:24 -0800 | [diff] [blame] | 502 | zuul.conf. May be supplied as a string pattern with substitutions |
| 503 | as described in url_pattern in :ref:`zuulconf`. |
| 504 | |
James E. Blair | 222d498 | 2012-07-16 09:31:19 -0700 | [diff] [blame] | 505 | **hold-following-changes (optional)** |
| 506 | This is a boolean that indicates that changes that follow this |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 507 | change in a dependent change pipeline should wait until this job |
James E. Blair | 222d498 | 2012-07-16 09:31:19 -0700 | [diff] [blame] | 508 | succeeds before launching. If this is applied to a very short job |
| 509 | that can predict whether longer jobs will fail early, this can be |
| 510 | used to reduce the number of jobs that Zuul will launch and |
| 511 | ultimately have to cancel. In that case, a small amount of |
Mathieu Gagné | d6d2a64 | 2013-06-11 20:59:58 -0400 | [diff] [blame] | 512 | parallelization of jobs is traded for more efficient use of testing |
James E. Blair | 222d498 | 2012-07-16 09:31:19 -0700 | [diff] [blame] | 513 | resources. On the other hand, to apply this to a long running job |
| 514 | would largely defeat the parallelization of dependent change testing |
Mathieu Gagné | d6d2a64 | 2013-06-11 20:59:58 -0400 | [diff] [blame] | 515 | that is the main feature of Zuul. Default: ``false``. |
James E. Blair | 222d498 | 2012-07-16 09:31:19 -0700 | [diff] [blame] | 516 | |
James E. Blair | e5a847f | 2012-07-10 15:29:14 -0700 | [diff] [blame] | 517 | **branch (optional)** |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 518 | This job should only be run on matching branches. This field is |
| 519 | treated as a regular expression and multiple branches may be |
| 520 | listed. |
| 521 | |
James E. Blair | 70c7158 | 2013-03-06 08:50:50 -0800 | [diff] [blame] | 522 | **files (optional)** |
| 523 | This job should only be run if at least one of the files involved in |
| 524 | the change (added, deleted, or modified) matches at least one of the |
| 525 | file patterns listed here. This field is treated as a regular |
| 526 | expression and multiple expressions may be listed. |
| 527 | |
Mathieu Gagné | d6d2a64 | 2013-06-11 20:59:58 -0400 | [diff] [blame] | 528 | **voting (optional)** |
| 529 | Boolean value (``true`` or ``false``) that indicates whatever |
| 530 | a job is voting or not. Default: ``true``. |
| 531 | |
James E. Blair | e5a847f | 2012-07-10 15:29:14 -0700 | [diff] [blame] | 532 | **parameter-function (optional)** |
| 533 | Specifies a function that should be applied to the parameters before |
| 534 | the job is launched. The function should be defined in a python file |
| 535 | included with the :ref:`includes` directive. The function |
| 536 | should have the following signature: |
| 537 | |
James E. Blair | d047097 | 2013-07-29 10:05:43 -0700 | [diff] [blame] | 538 | .. function:: parameters(item, job, parameters) |
James E. Blair | e5a847f | 2012-07-10 15:29:14 -0700 | [diff] [blame] | 539 | |
| 540 | Manipulate the parameters passed to a job before a build is |
| 541 | launched. The ``parameters`` dictionary will already contain the |
| 542 | standard Zuul job parameters, and is expected to be modified |
| 543 | in-place. |
| 544 | |
James E. Blair | d78576a | 2013-07-09 10:39:17 -0700 | [diff] [blame] | 545 | :param item: the current queue item |
| 546 | :type item: zuul.model.QueueItem |
James E. Blair | d047097 | 2013-07-29 10:05:43 -0700 | [diff] [blame] | 547 | :param job: the job about to be run |
| 548 | :type job: zuul.model.Job |
James E. Blair | e5a847f | 2012-07-10 15:29:14 -0700 | [diff] [blame] | 549 | :param parameters: parameters to be passed to the job |
| 550 | :type parameters: dict |
| 551 | |
James E. Blair | 1f4c2bb | 2013-04-26 08:40:46 -0700 | [diff] [blame] | 552 | If the parameter **ZUUL_NODE** is set by this function, then it will |
| 553 | be used to specify on what node (or class of node) the job should be |
| 554 | run. |
| 555 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 556 | Here is an example of setting the failure message for jobs that check |
| 557 | whether a change merges cleanly:: |
| 558 | |
| 559 | - name: ^.*-merge$ |
| 560 | failure-message: This change was unable to be automatically merged |
| 561 | with the current state of the repository. Please rebase your |
| 562 | change and upload a new patchset. |
| 563 | |
| 564 | Projects |
| 565 | """""""" |
| 566 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 567 | The projects section indicates what jobs should be run in each pipeline |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 568 | for events associated with each project. It contains a list of |
| 569 | projects. Here is an example:: |
| 570 | |
| 571 | - name: example/project |
| 572 | check: |
| 573 | - project-merge: |
| 574 | - project-unittest |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 575 | - project-pep8 |
| 576 | - project-pyflakes |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 577 | gate: |
| 578 | - project-merge: |
| 579 | - project-unittest |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 580 | - project-pep8 |
| 581 | - project-pyflakes |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 582 | post: |
| 583 | - project-publish |
| 584 | |
| 585 | **name** |
| 586 | The name of the project (as known by Gerrit). |
| 587 | |
James E. Blair | 19deff2 | 2013-08-25 13:17:35 -0700 | [diff] [blame] | 588 | **merge-mode (optional)** |
| 589 | An optional value that indicates what strategy should be used to |
| 590 | merge changes to this project. Supported values are: |
| 591 | |
| 592 | ** merge-resolve ** |
| 593 | Equivalent to 'git merge -s resolve'. This corresponds closely to |
| 594 | what Gerrit performs (using JGit) for a project if the "Merge if |
| 595 | necessary" merge mode is selected and "Automatically resolve |
| 596 | conflicts" is checked. This is the default. |
| 597 | |
| 598 | ** merge ** |
| 599 | Equivalent to 'git merge'. |
| 600 | |
| 601 | ** cherry-pick ** |
| 602 | Equivalent to 'git cherry-pick'. |
| 603 | |
Clark Boylan | 00635dc | 2012-09-19 14:03:08 -0700 | [diff] [blame] | 604 | This is followed by a section for each of the pipelines defined above. |
| 605 | Pipelines may be omitted if no jobs should run for this project in a |
| 606 | given pipeline. Within the pipeline section, the jobs that should be |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 607 | executed are listed. If a job is entered as a dictionary key, then |
| 608 | jobs contained within that key are only executed if the key job |
| 609 | succeeds. In the above example, project-unittest, project-pep8, and |
| 610 | project-pyflakes are only executed if project-merge succeeds. This |
| 611 | can help avoid running unnecessary jobs. |
| 612 | |
Paul Belanger | ffef9e4 | 2013-02-11 22:15:18 -0500 | [diff] [blame] | 613 | .. 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. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 614 | |
Antoine Musso | 80edd5a | 2013-02-13 15:37:53 +0100 | [diff] [blame] | 615 | Project Templates |
| 616 | """"""""""""""""" |
| 617 | |
Michael Prokop | 526926a | 2013-10-24 16:16:57 +0200 | [diff] [blame] | 618 | Whenever you have lot of similar projects (such as plugins for a project) you |
Antoine Musso | 80edd5a | 2013-02-13 15:37:53 +0100 | [diff] [blame] | 619 | will most probably want to use the same pipeline configurations. The |
| 620 | project templates let you define pipelines and job name templates to trigger. |
| 621 | One can then just apply the template on its project which make it easier to |
Michael Prokop | 526926a | 2013-10-24 16:16:57 +0200 | [diff] [blame] | 622 | update several similar projects. As an example:: |
Antoine Musso | 80edd5a | 2013-02-13 15:37:53 +0100 | [diff] [blame] | 623 | |
| 624 | project-templates: |
| 625 | # Name of the template |
| 626 | - name: plugin-triggering |
| 627 | # Definition of pipelines just like for a `project` |
| 628 | check: |
| 629 | - '{jobprefix}-merge': |
| 630 | - '{jobprefix}-pep8' |
| 631 | - '{jobprefix}-pyflakes' |
| 632 | gate: |
| 633 | - '{jobprefix}-merge': |
| 634 | - '{jobprefix}-unittest' |
| 635 | - '{jobprefix}-pep8' |
| 636 | - '{jobprefix}-pyflakes' |
| 637 | |
| 638 | In your projects definition, you will then apply the template using the template |
| 639 | key:: |
| 640 | |
| 641 | projects: |
| 642 | - name: plugin/foobar |
| 643 | template: |
| 644 | - name: plugin-triggering |
| 645 | jobprefix: plugin-foobar |
| 646 | |
James E. Blair | aea6cf6 | 2013-12-16 15:38:12 -0800 | [diff] [blame] | 647 | You can pass several parameters to a template. A ``parameter`` value |
| 648 | will be used for expansion of ``{parameter}`` in the template |
| 649 | strings. The parameter ``name`` will be automatically provided and |
| 650 | will contain the short name of the project, that is the portion of the |
| 651 | project name after the last ``/`` character. |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 652 | |
James E. Blair | 3e98c02 | 2013-12-16 15:25:38 -0800 | [diff] [blame] | 653 | Multiple templates can be combined in a project, and the jobs from all |
| 654 | of those templates will be added to the project. Individual jobs may |
| 655 | also be added:: |
| 656 | |
| 657 | projects: |
| 658 | - name: plugin/foobar |
| 659 | template: |
| 660 | - name: plugin-triggering |
| 661 | jobprefix: plugin-foobar |
| 662 | - name: plugin-extras |
| 663 | jobprefix: plugin-foobar |
| 664 | check: |
| 665 | - foobar-extra-special-job |
| 666 | |
| 667 | The order of the jobs listed in the project (which only affects the |
| 668 | order of jobs listed on the report) will be the jobs from each |
| 669 | template in the order listed, followed by any jobs individually listed |
| 670 | for the project. |
| 671 | |
| 672 | Note that if multiple templates are used for a project and one |
| 673 | template specifies a job that is also specified in another template, |
| 674 | or specified in the project itself, those jobs will be duplicated in |
| 675 | the resulting project configuration. |
| 676 | |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 677 | logging.conf |
| 678 | ~~~~~~~~~~~~ |
| 679 | This file is optional. If provided, it should be a standard |
| 680 | :mod:`logging.config` module configuration file. If not present, Zuul will |
| 681 | output all log messages of DEBUG level or higher to the console. |
| 682 | |
| 683 | Starting Zuul |
| 684 | ------------- |
| 685 | |
| 686 | To start Zuul, run **zuul-server**:: |
| 687 | |
Antoine Musso | b3aa828 | 2013-04-19 15:16:59 +0200 | [diff] [blame] | 688 | usage: zuul-server [-h] [-c CONFIG] [-l LAYOUT] [-d] [-t] [--version] |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 689 | |
| 690 | Project gating system. |
| 691 | |
| 692 | optional arguments: |
| 693 | -h, --help show this help message and exit |
| 694 | -c CONFIG specify the config file |
Antoine Musso | b3aa828 | 2013-04-19 15:16:59 +0200 | [diff] [blame] | 695 | -l LAYOUT specify the layout file |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 696 | -d do not run as a daemon |
Antoine Musso | b3aa828 | 2013-04-19 15:16:59 +0200 | [diff] [blame] | 697 | -t validate layout file syntax |
| 698 | --version show zuul version |
James E. Blair | cdd0007 | 2012-06-08 19:17:28 -0700 | [diff] [blame] | 699 | |
| 700 | You may want to use the ``-d`` argument while you are initially setting |
| 701 | up Zuul so you can detect any configuration errors quickly. Under |
| 702 | normal operation, omit ``-d`` and let Zuul run as a daemon. |
| 703 | |
| 704 | If you send signal 1 (SIGHUP) to the zuul-server process, Zuul will |
| 705 | stop executing new jobs, wait until all executing jobs are finished, |
| 706 | reload its configuration, and resume. Any values in any of the |
| 707 | configuration files may be changed, except the location of Zuul's PID |
| 708 | file (a change to that will be ignored until Zuul is restarted). |
Clark Boylan | f231fa2 | 2013-02-08 12:28:53 -0800 | [diff] [blame] | 709 | |
| 710 | If you send a SIGUSR1 to the zuul-server process, Zuul will stop |
| 711 | executing new jobs, wait until all executing jobs are finished, |
| 712 | then exit. While waiting to exit Zuul will queue Gerrit events and |
| 713 | save these events prior to exiting. When Zuul starts again it will |
| 714 | read these saved events and act on them. |
Jeremy Stanley | 93e05f4 | 2013-03-08 17:29:17 +0000 | [diff] [blame] | 715 | |
Michael Prokop | 526926a | 2013-10-24 16:16:57 +0200 | [diff] [blame] | 716 | If you need to abort Zuul and intend to manually requeue changes for |
Jeremy Stanley | 93e05f4 | 2013-03-08 17:29:17 +0000 | [diff] [blame] | 717 | jobs which were running in its pipelines, prior to terminating you can |
| 718 | use the zuul-changes.py tool script to simplify the process. For |
| 719 | example, this would give you a list of Gerrit commands to reverify or |
| 720 | recheck changes for the gate and check pipelines respectively:: |
| 721 | |
| 722 | ./tools/zuul-changes.py --review-host=review.openstack.org \ |
| 723 | http://zuul.openstack.org/ gate 'reverify no bug' |
| 724 | ./tools/zuul-changes.py --review-host=review.openstack.org \ |
| 725 | http://zuul.openstack.org/ check 'recheck no bug' |
Clark Boylan | fba9b24 | 2013-08-20 10:11:17 -0700 | [diff] [blame] | 726 | |
| 727 | If you send a SIGUSR2 to the zuul-server process, Zuul will dump a stack |
| 728 | trace for each running thread into its debug log. This is useful for |
| 729 | tracking down deadlock or otherwise slow threads. |