blob: 820e3166f3a215d8bae6af418da318ee6723e4fc [file] [log] [blame]
James E. Blaireff5a9d2017-06-20 00:00:37 -07001:title: Job Content
2
3Job Content
4===========
5
David Shrewsburyc50cb572017-08-04 11:55:01 -04006Zuul jobs are implemented as Ansible playbooks. Zuul prepares the
James E. Blaireff5a9d2017-06-20 00:00:37 -07007repositories used for a job, installs any required Ansible roles, and
8then executes the job's playbooks. Any setup or artifact collection
9required is the responsibility of the job itself. While this flexible
10arrangement allows for almost any kind of job to be run by Zuul,
11batteries are included. Zuul has a standard library of jobs upon
12which to build.
13
14Working Directory
15-----------------
16
17Before starting each job, the Zuul executor creates a directory to
18hold all of the content related to the job. This includes some
19directories which are used by Zuul to configure and run Ansible and
20may not be accessible, as well as a directory tree, under ``work/``,
21that is readable and writable by the job. The hierarchy is:
22
23**work/**
24 The working directory of the job.
25
26**work/src/**
27 Contains the prepared git repositories for the job.
28
29**work/logs/**
30 Where the Ansible log for the job is written; your job
31 may place other logs here as well.
32
33Git Repositories
34----------------
35
36The git repositories in ``work/src`` contain the repositories for all
37of the projects specified in the ``required-projects`` section of the
38job, plus the project associated with the queue item if it isn't
39already in that list. In the case of a proposed change, that change
40and all of the changes ahead of it in the pipeline queue will already
41be merged into their respective repositories and target branches. The
42change's project will have the change's branch checked out, as will
43all of the other projects, if that branch exists (otherwise, a
44fallback or default branch will be used). If your job needs to
45operate on multiple branches, simply checkout the appropriate branches
46of these git repos to ensure that the job results reflect the proposed
47future state that Zuul is testing, and all dependencies are present.
48Do not use any git remotes; the local repositories are guaranteed to
49be up to date.
50
James E. Blair4d5dd252017-06-23 21:40:56 +010051The repositories will be placed on the filesystem in directories
52corresponding with the canonical hostname of their source connection.
53For example::
54
55 work/src/git.example.com/project1
56 work/src/github.com/project2
57
58Is the layout that would be present for a job which included project1
59from the connection associated to git.example.com and project2 from
60GitHub. This helps avoid collisions between projects with the same
61name, and some language environments, such as Go, expect repositories
62in this format.
63
James E. Blaireff5a9d2017-06-20 00:00:37 -070064Note that these git repositories are located on the executor; in order
65to be useful to most kinds of jobs, they will need to be present on
Jeremy Stanley21df5962018-01-08 21:35:58 +000066the test nodes. The ``base`` job in the standard library (see
67`zuul-base-jobs documentation`_ for details) contains a
James E. Blaireff5a9d2017-06-20 00:00:37 -070068pre-playbook which copies the repositories to all of the job's nodes.
69It is recommended to always inherit from this base job to ensure that
70behavior.
71
Jeremy Stanley21df5962018-01-08 21:35:58 +000072.. _zuul-base-jobs documentation: https://docs.openstack.org/infra/zuul-base-jobs/jobs.html#job-base
73
74.. TODO: document src (and logs?) directory
James E. Blaireff5a9d2017-06-20 00:00:37 -070075
James E. Blair28c8e3b2017-07-17 16:27:50 -070076Variables
77---------
78
Jamie Lennox7655b552017-03-17 12:33:38 +110079There are several sources of variables which are available to Ansible:
80variables defined in jobs, secrets, and site-wide variables. The
81order of precedence is:
82
83* Site-wide variables
84
85* Secrets
86
87* Job variables
88
James E. Blair698703c2017-09-15 20:58:30 -060089* Parent job results
90
Jamie Lennox7655b552017-03-17 12:33:38 +110091Meaning that a site-wide variable with the same name as any other will
92override its value, and similarly, secrets override job variables of
James E. Blair698703c2017-09-15 20:58:30 -060093the same name which override data returned from parent jobs. Each of
94the sources is described below.
Jamie Lennox7655b552017-03-17 12:33:38 +110095
96
97Job Variables
98~~~~~~~~~~~~~
99
James E. Blaird9f0efb2017-08-02 16:07:44 -0700100Any variables specified in the job definition (using the
101:attr:`job.vars` attribute) are available as Ansible host variables.
102They are added to the ``vars`` section of the inventory file under the
103``all`` hosts group, so they are available to all hosts. Simply refer
104to them by the name specified in the job's ``vars`` section.
James E. Blair28c8e3b2017-07-17 16:27:50 -0700105
106Secrets
107~~~~~~~
108
James E. Blaird9f0efb2017-08-02 16:07:44 -0700109:ref:`Secrets <secret>` also appear as variables available to Ansible.
110Unlike job variables, these are not added to the inventory file (so
111that the inventory file may be kept for debugging purposes without
112revealing secrets). But they are still available to Ansible as normal
James E. Blair28c8e3b2017-07-17 16:27:50 -0700113variables. Because secrets are groups of variables, they will appear
114as a dictionary structure in templates, with the dictionary itself
115being the name of the secret, and its members the individual items in
James E. Blaird9f0efb2017-08-02 16:07:44 -0700116the secret. For example, a secret defined as:
117
118.. code-block:: yaml
James E. Blair28c8e3b2017-07-17 16:27:50 -0700119
120 - secret:
121 name: credentials
122 data:
123 username: foo
124 password: bar
125
126Might be used in a template as::
127
128 {{ credentials.username }} {{ credentials.password }}
129
James E. Blair892cca62017-08-09 11:36:58 -0700130Secrets are only available to playbooks associated with the job
131definition which uses the secret; they are not available to playbooks
132associated with child jobs or job variants.
James E. Blair28c8e3b2017-07-17 16:27:50 -0700133
James E. Blaireff5a9d2017-06-20 00:00:37 -0700134Zuul Variables
James E. Blair28c8e3b2017-07-17 16:27:50 -0700135~~~~~~~~~~~~~~
James E. Blaireff5a9d2017-06-20 00:00:37 -0700136
137Zuul supplies not only the variables specified by the job definition
James E. Blaird9f0efb2017-08-02 16:07:44 -0700138to Ansible, but also some variables from Zuul itself.
James E. Blair21037782017-07-19 11:56:55 -0700139
James E. Blairbabefce2017-07-20 17:14:54 -0700140When a pipeline is triggered by an action, it enqueues items which may
James E. Blair21037782017-07-19 11:56:55 -0700141vary based on the pipeline's configuration. For example, when a new
142change is created, that change may be enqueued into the pipeline,
143while a tag may be enqueued into the pipeline when it is pushed.
144
145Information about these items is available to jobs. All of the items
146enqueued in a pipeline are git references, and therefore share some
147attributes in common. But other attributes may vary based on the type
148of item.
149
James E. Blaird9f0efb2017-08-02 16:07:44 -0700150.. var:: zuul
James E. Blair21037782017-07-19 11:56:55 -0700151
James E. Blaird9f0efb2017-08-02 16:07:44 -0700152 All items provide the following information as Ansible variables
153 under the ``zuul`` key:
James E. Blair21037782017-07-19 11:56:55 -0700154
James E. Blaird9f0efb2017-08-02 16:07:44 -0700155 .. var:: build
James E. Blair21037782017-07-19 11:56:55 -0700156
James E. Blaird9f0efb2017-08-02 16:07:44 -0700157 The UUID of the build. A build is a single execution of a job.
158 When an item is enqueued into a pipeline, this usually results
159 in one build of each job configured for that item's project.
160 However, items may be re-enqueued in which case another build
161 may run. In dependent pipelines, the same job may run multiple
162 times for the same item as circumstances change ahead in the
163 queue. Each time a job is run, for whatever reason, it is
164 acompanied with a new unique id.
James E. Blair21037782017-07-19 11:56:55 -0700165
James E. Blaird9f0efb2017-08-02 16:07:44 -0700166 .. var:: buildset
James E. Blair21037782017-07-19 11:56:55 -0700167
James E. Blaird9f0efb2017-08-02 16:07:44 -0700168 The build set UUID. When Zuul runs jobs for an item, the
169 collection of those jobs is known as a buildset. If the
170 configuration of items ahead in a dependent pipeline changes,
171 Zuul creates a new buildset and restarts all of the jobs.
James E. Blair21037782017-07-19 11:56:55 -0700172
James E. Blaird9f0efb2017-08-02 16:07:44 -0700173 .. var:: ref
James E. Blair2ef29e92017-07-21 15:25:05 -0700174
James E. Blaird9f0efb2017-08-02 16:07:44 -0700175 The git ref of the item. This will be the full path (e.g.,
176 `refs/heads/master` or `refs/changes/...`).
James E. Blair21037782017-07-19 11:56:55 -0700177
James E. Blairbae8fec2017-11-21 10:19:06 -0800178 .. var:: override_checkout
179
180 If the job was configured to override the branch or tag checked
James E. Blair4ad12ea2017-11-30 14:41:06 -0800181 out, this will contain the specified value. Otherwise, this
182 variable will be undefined.
James E. Blairbae8fec2017-11-21 10:19:06 -0800183
James E. Blaird9f0efb2017-08-02 16:07:44 -0700184 .. var:: pipeline
James E. Blair21037782017-07-19 11:56:55 -0700185
James E. Blaird9f0efb2017-08-02 16:07:44 -0700186 The name of the pipeline in which the job is being run.
Monty Taylor299f94b2017-07-28 17:16:36 -0500187
James E. Blaird9f0efb2017-08-02 16:07:44 -0700188 .. var:: job
James E. Blair21037782017-07-19 11:56:55 -0700189
James E. Blaird9f0efb2017-08-02 16:07:44 -0700190 The name of the job being run.
James E. Blair21037782017-07-19 11:56:55 -0700191
James E. Blaird9f0efb2017-08-02 16:07:44 -0700192 .. var:: voting
James E. Blair21037782017-07-19 11:56:55 -0700193
James E. Blaird9f0efb2017-08-02 16:07:44 -0700194 A boolean indicating whether the job is voting.
James E. Blair21037782017-07-19 11:56:55 -0700195
James E. Blaird9f0efb2017-08-02 16:07:44 -0700196 .. var:: project
James E. Blair21037782017-07-19 11:56:55 -0700197
James E. Blaird9f0efb2017-08-02 16:07:44 -0700198 The item's project. This is a data structure with the following
199 fields:
James E. Blair21037782017-07-19 11:56:55 -0700200
James E. Blaird9f0efb2017-08-02 16:07:44 -0700201 .. var:: name
Monty Taylor299f94b2017-07-28 17:16:36 -0500202
James E. Blaird9f0efb2017-08-02 16:07:44 -0700203 The name of the project, excluding hostname. E.g., `org/project`.
Monty Taylor299f94b2017-07-28 17:16:36 -0500204
James E. Blaird9f0efb2017-08-02 16:07:44 -0700205 .. var:: short_name
Monty Taylor299f94b2017-07-28 17:16:36 -0500206
James E. Blaird9f0efb2017-08-02 16:07:44 -0700207 The name of the project, excluding directories or
208 organizations. E.g., `project`.
Monty Taylor299f94b2017-07-28 17:16:36 -0500209
James E. Blaird9f0efb2017-08-02 16:07:44 -0700210 .. var:: canonical_hostname
Monty Taylor299f94b2017-07-28 17:16:36 -0500211
James E. Blaird9f0efb2017-08-02 16:07:44 -0700212 The canonical hostname where the project lives. E.g.,
213 `git.example.com`.
Monty Taylor299f94b2017-07-28 17:16:36 -0500214
James E. Blaird9f0efb2017-08-02 16:07:44 -0700215 .. var:: canonical_name
216
217 The full canonical name of the project including hostname.
218 E.g., `git.example.com/org/project`.
219
Monty Taylor9e67bb72017-08-08 15:32:06 -0500220 .. var:: src_dir
221
James E. Blairba46c062017-08-28 16:23:24 -0700222 The path to the source code relative to the work dir. E.g.,
223 `src/git.example.com/org/project`.
Monty Taylor9e67bb72017-08-08 15:32:06 -0500224
James E. Blairba46c062017-08-28 16:23:24 -0700225 .. var:: projects
Ian Wienand42234422017-10-23 16:03:53 +1100226 :type: dict
James E. Blairba46c062017-08-28 16:23:24 -0700227
Clark Boylan3934e3f2017-12-06 11:03:26 -0800228 A dictionary of all projects prepared by Zuul for the item. It
James E. Blairba46c062017-08-28 16:23:24 -0700229 includes, at least, the item's own project. It also includes
230 the projects of any items this item depends on, as well as the
231 projects that appear in :attr:`job.required-projects`.
232
Ian Wienand42234422017-10-23 16:03:53 +1100233 This is a dictionary of dictionaries. Each value has a key of
234 the `canonical_name`, then each entry consists of:
James E. Blairba46c062017-08-28 16:23:24 -0700235
236 .. var:: name
237
238 The name of the project, excluding hostname. E.g., `org/project`.
239
240 .. var:: short_name
241
242 The name of the project, excluding directories or
243 organizations. E.g., `project`.
244
245 .. var:: canonical_hostname
246
247 The canonical hostname where the project lives. E.g.,
248 `git.example.com`.
249
250 .. var:: canonical_name
251
252 The full canonical name of the project including hostname.
253 E.g., `git.example.com/org/project`.
254
255 .. var:: src_dir
256
257 The path to the source code, relative to the work dir. E.g.,
258 `src/git.example.com/org/project`.
Monty Taylor9e67bb72017-08-08 15:32:06 -0500259
James E. Blairb3d3f2b2017-09-27 12:04:55 -0700260 .. var:: required
261
262 A boolean indicating whether this project appears in the
263 :attr:`job.required-projects` list for this job.
264
James E. Blairbae8fec2017-11-21 10:19:06 -0800265 .. var:: checkout
266
267 The branch or tag that Zuul checked out for this project.
268 This may be influenced by the branch or tag associated with
269 the item as well as the job configuration.
270
Ian Wienand42234422017-10-23 16:03:53 +1100271 For example, to access the source directory of a single known
272 project, you might use::
273
274 {{ zuul.projects['git.example.com/org/project'].src_dir }}
275
276 To iterate over the project list, you might write a task
277 something like::
278
279 - name: Sample project iteration
280 debug:
281 msg: "Project {{ item.name }} is at {{ item.src_dir }}
282 with_items: {{ zuul.projects.values() | list }}
283
James E. Blaird9f0efb2017-08-02 16:07:44 -0700284 .. var:: tenant
285
286 The name of the current Zuul tenant.
287
James E. Blair93e57f72017-09-01 08:51:49 -0700288 .. var:: timeout
289
290 The job timeout, in seconds.
291
James E. Blaird9f0efb2017-08-02 16:07:44 -0700292 .. var:: jobtags
293
294 A list of tags associated with the job. Not to be confused with
295 git tags, these are simply free-form text fields that can be
296 used by the job for reporting or classification purposes.
297
298 .. var:: items
299 :type: list
300
301 A list of dictionaries, each representing an item being tested
302 with this change with the format:
303
304 .. var:: project
305
306 The item's project. This is a data structure with the
307 following fields:
308
309 .. var:: name
310
311 The name of the project, excluding hostname. E.g.,
312 `org/project`.
313
314 .. var:: short_name
315
316 The name of the project, excluding directories or
317 organizations. E.g., `project`.
318
319 .. var:: canonical_hostname
320
321 The canonical hostname where the project lives. E.g.,
322 `git.example.com`.
323
324 .. var:: canonical_name
325
326 The full canonical name of the project including hostname.
327 E.g., `git.example.com/org/project`.
328
Monty Taylor9e67bb72017-08-08 15:32:06 -0500329 .. var:: src_dir
330
331 The path to the source code on the remote host, relative
332 to the home dir of the remote user.
333 E.g., `src/git.example.com/org/project`.
334
James E. Blaird9f0efb2017-08-02 16:07:44 -0700335 .. var:: branch
336
337 The target branch of the change (without the `refs/heads/` prefix).
338
339 .. var:: change
340
341 The identifier for the change.
342
Monty Taylor41634442017-09-06 18:35:17 -0500343 .. var:: change_url
344
345 The URL to the source location of the given change.
346 E.g., `https://review.example.org/#/c/123456/` or
347 `https://github.com/example/example/pull/1234`.
348
James E. Blaird9f0efb2017-08-02 16:07:44 -0700349 .. var:: patchset
350
351 The patchset identifier for the change. If a change is
352 revised, this will have a different value.
James E. Blair21037782017-07-19 11:56:55 -0700353
Jesse Keatinga49ddaf2017-09-11 18:17:47 -0600354.. var:: zuul_success
355
356 Post run playbook(s) will be passed this variable to indicate if the run
357 phase of the job was successful or not. This variable is meant to be used
358 with the `boolean` filter.
359
360
James E. Blair21037782017-07-19 11:56:55 -0700361Change Items
362++++++++++++
363
364A change to the repository. Most often, this will be a git reference
365which has not yet been merged into the repository (e.g., a gerrit
366change or a GitHub pull request). The following additional variables
367are available:
368
James E. Blaird9f0efb2017-08-02 16:07:44 -0700369.. var:: zuul
370 :hidden:
James E. Blair21037782017-07-19 11:56:55 -0700371
James E. Blaird9f0efb2017-08-02 16:07:44 -0700372 .. var:: branch
James E. Blair21037782017-07-19 11:56:55 -0700373
James E. Blaird9f0efb2017-08-02 16:07:44 -0700374 The target branch of the change (without the `refs/heads/` prefix).
375
376 .. var:: change
377
378 The identifier for the change.
379
380 .. var:: patchset
381
382 The patchset identifier for the change. If a change is revised,
383 this will have a different value.
James E. Blair21037782017-07-19 11:56:55 -0700384
Monty Taylor41634442017-09-06 18:35:17 -0500385 .. var:: change_url
386
387 The URL to the source location of the given change.
388 E.g., `https://review.example.org/#/c/123456/` or
389 `https://github.com/example/example/pull/1234`.
390
James E. Blair21037782017-07-19 11:56:55 -0700391Branch Items
392++++++++++++
393
394This represents a branch tip. This item may have been enqueued
395because the branch was updated (via a change having merged, or a
396direct push). Or it may have been enqueued by a timer for the purpose
397of verifying the current condition of the branch. The following
398additional variables are available:
399
James E. Blaird9f0efb2017-08-02 16:07:44 -0700400.. var:: zuul
401 :hidden:
James E. Blair21037782017-07-19 11:56:55 -0700402
James E. Blaird9f0efb2017-08-02 16:07:44 -0700403 .. var:: branch
James E. Blair21037782017-07-19 11:56:55 -0700404
James E. Blaird9f0efb2017-08-02 16:07:44 -0700405 The name of the item's branch (without the `refs/heads/`
406 prefix).
407
408 .. var:: oldrev
409
410 If the item was enqueued as the result of a change merging or
411 being pushed to the branch, the git sha of the old revision will
412 be included here. Otherwise, this variable will be undefined.
413
414 .. var:: newrev
415
416 If the item was enqueued as the result of a change merging or
417 being pushed to the branch, the git sha of the new revision will
418 be included here. Otherwise, this variable will be undefined.
James E. Blair21037782017-07-19 11:56:55 -0700419
420Tag Items
421+++++++++
422
423This represents a git tag. The item may have been enqueued because a
424tag was created or deleted. The following additional variables are
425available:
426
James E. Blaird9f0efb2017-08-02 16:07:44 -0700427.. var:: zuul
428 :hidden:
James E. Blair21037782017-07-19 11:56:55 -0700429
James E. Blaird9f0efb2017-08-02 16:07:44 -0700430 .. var:: tag
James E. Blair21037782017-07-19 11:56:55 -0700431
James E. Blaird9f0efb2017-08-02 16:07:44 -0700432 The name of the item's tag (without the `refs/tags/` prefix).
433
434 .. var:: oldrev
435
436 If the item was enqueued as the result of a tag being deleted,
437 the previous git sha of the tag will be included here. If the
438 tag was created, this variable will be undefined.
439
440 .. var:: newrev
441
442 If the item was enqueued as the result of a tag being created,
443 the new git sha of the tag will be included here. If the tag
444 was deleted, this variable will be undefined.
James E. Blair21037782017-07-19 11:56:55 -0700445
446Ref Items
447+++++++++
448
449This represents a git reference that is neither a change, branch, or
450tag. Note that all items include a `ref` attribute which may be used
451to identify the ref. The following additional variables are
452available:
453
James E. Blaird9f0efb2017-08-02 16:07:44 -0700454.. var:: zuul
455 :hidden:
James E. Blair21037782017-07-19 11:56:55 -0700456
James E. Blaird9f0efb2017-08-02 16:07:44 -0700457 .. var:: oldrev
458
459 If the item was enqueued as the result of a ref being deleted,
460 the previous git sha of the ref will be included here. If the
461 ref was created, this variable will be undefined.
462
463 .. var:: newrev
464
465 If the item was enqueued as the result of a ref being created,
466 the new git sha of the ref will be included here. If the ref
467 was deleted, this variable will be undefined.
James E. Blair21037782017-07-19 11:56:55 -0700468
469Working Directory
470+++++++++++++++++
471
472Additionally, some information about the working directory and the
473executor running the job is available:
James E. Blaireff5a9d2017-06-20 00:00:37 -0700474
James E. Blaird9f0efb2017-08-02 16:07:44 -0700475.. var:: zuul
476 :hidden:
James E. Blaireff5a9d2017-06-20 00:00:37 -0700477
James E. Blaird9f0efb2017-08-02 16:07:44 -0700478 .. var:: executor
James E. Blaireff5a9d2017-06-20 00:00:37 -0700479
James E. Blaird9f0efb2017-08-02 16:07:44 -0700480 A number of values related to the executor running the job are
481 available:
James E. Blaireff5a9d2017-06-20 00:00:37 -0700482
James E. Blaird9f0efb2017-08-02 16:07:44 -0700483 .. var:: hostname
484
485 The hostname of the executor.
486
487 .. var:: src_root
488
489 The path to the source directory.
490
491 .. var:: log_root
492
493 The path to the logs directory.
494
495 .. var:: work_root
496
497 The path to the working directory.
Jamie Lennox7655b552017-03-17 12:33:38 +1100498
499.. _user_sitewide_variables:
500
501Site-wide Variables
502~~~~~~~~~~~~~~~~~~~
503
504The Zuul administrator may define variables which will be available to
505all jobs running in the system. These are statically defined and may
506not be altered by jobs. See the :ref:`Administrator's Guide
507<admin_sitewide_variables>` for information on how a site
508administrator may define these variables.
509
James E. Blair698703c2017-09-15 20:58:30 -0600510Parent Job Results
511~~~~~~~~~~~~~~~~~~
512
513A job may return data to Zuul for later use by jobs which depend on
514it. For details, see :ref:`return_values`.
Jamie Lennox7655b552017-03-17 12:33:38 +1100515
James E. Blaireff5a9d2017-06-20 00:00:37 -0700516SSH Keys
517--------
518
519Zuul starts each job with an SSH agent running and the key used to
520access the job's nodes added to that agent. Generally you won't need
521to be aware of this since Ansible will use this when performing any
522tasks on remote nodes. However, under some circumstances you may want
523to interact with the agent. For example, you may wish to add a key
524provided as a secret to the job in order to access a specific host, or
525you may want to, in a pre-playbook, replace the key used to log into
526the assigned nodes in order to further protect it from being abused by
527untrusted job content.
528
529.. TODO: describe standard lib and link to published docs for it.
530
James E. Blair88e79c02017-07-07 13:36:54 -0700531.. _return_values:
532
James E. Blair196f61a2017-06-30 15:42:29 -0700533Return Values
534-------------
535
James E. Blair698703c2017-09-15 20:58:30 -0600536A job may return some values to Zuul to affect its behavior and for
537use by other jobs.. To return a value, use the ``zuul_return``
Tristan Cacquerayff47ff02017-12-13 08:51:58 +0000538Ansible module in a job playbook running on the executor 'localhost' node.
539For example:
James E. Blaird9f0efb2017-08-02 16:07:44 -0700540
541.. code-block:: yaml
James E. Blair196f61a2017-06-30 15:42:29 -0700542
543 tasks:
544 - zuul_return:
545 data:
546 foo: bar
547
James E. Blair698703c2017-09-15 20:58:30 -0600548Will return the dictionary ``{'foo': 'bar'}`` to Zuul.
James E. Blair196f61a2017-06-30 15:42:29 -0700549
550.. TODO: xref to section describing formatting
551
James E. Blair698703c2017-09-15 20:58:30 -0600552To set the log URL for a build, use *zuul_return* to set the
James E. Blaird9f0efb2017-08-02 16:07:44 -0700553**zuul.log_url** value. For example:
554
555.. code-block:: yaml
James E. Blair196f61a2017-06-30 15:42:29 -0700556
557 tasks:
558 - zuul_return:
559 data:
560 zuul:
561 log_url: http://logs.example.com/path/to/build/logs
James E. Blair698703c2017-09-15 20:58:30 -0600562
563Any values other than those in the ``zuul`` hierarchy will be supplied
564as Ansible variables to child jobs. These variables have less
565precedence than any other type of variable in Zuul, so be sure their
566names are not shared by any job variables. If more than one parent
567job returns the same variable, the value from the later job in the job
568graph will take precedence.