blob: c2c376ee64b65907919952f5b7307c68999c4ffc [file] [log] [blame]
James E. Blaireff5a9d2017-06-20 00:00:37 -07001:title: Job Content
2
3Job Content
4===========
5
6Zuul jobs are implemneted as Ansible playbooks. Zuul prepares the
7repositories 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
66the test nodes. The ``base`` job in the standard library contains a
67pre-playbook which copies the repositories to all of the job's nodes.
68It is recommended to always inherit from this base job to ensure that
69behavior.
70
71.. TODO: link to base job documentation and/or document src (and logs?) directory
72
James E. Blair28c8e3b2017-07-17 16:27:50 -070073Variables
74---------
75
76Any variables specified in the job definition are available as Ansible
77host variables. They are added to the `vars` section of the inventory
78file under the `all` hosts group, so they are available to all hosts.
79Simply refer to them by the name specified in the job's `vars`
80section.
81
82Secrets
83~~~~~~~
84
85Secrets also appear as variables available to Ansible. Unlike job
86variables, these are not added to the inventory file (so that the
87inventory file may be kept for debugging purposes without revealing
88secrets). But they are still available to Ansible as normal
89variables. Because secrets are groups of variables, they will appear
90as a dictionary structure in templates, with the dictionary itself
91being the name of the secret, and its members the individual items in
92the secret. For example, a secret defined as::
93
94 - secret:
95 name: credentials
96 data:
97 username: foo
98 password: bar
99
100Might be used in a template as::
101
102 {{ credentials.username }} {{ credentials.password }}
103
104.. TODO: xref job vars
105
James E. Blaireff5a9d2017-06-20 00:00:37 -0700106Zuul Variables
James E. Blair28c8e3b2017-07-17 16:27:50 -0700107~~~~~~~~~~~~~~
James E. Blaireff5a9d2017-06-20 00:00:37 -0700108
109Zuul supplies not only the variables specified by the job definition
110to Ansible, but also some variables from the executor itself. They
111are:
112
113**zuul.executor.hostname**
114 The hostname of the executor.
115
116**zuul.executor.src_root**
117 The path to the source directory.
118
119**zuul.executor.log_root**
120 The path to the logs directory.
121
122SSH Keys
123--------
124
125Zuul starts each job with an SSH agent running and the key used to
126access the job's nodes added to that agent. Generally you won't need
127to be aware of this since Ansible will use this when performing any
128tasks on remote nodes. However, under some circumstances you may want
129to interact with the agent. For example, you may wish to add a key
130provided as a secret to the job in order to access a specific host, or
131you may want to, in a pre-playbook, replace the key used to log into
132the assigned nodes in order to further protect it from being abused by
133untrusted job content.
134
135.. TODO: describe standard lib and link to published docs for it.
136
James E. Blair88e79c02017-07-07 13:36:54 -0700137.. _return_values:
138
James E. Blair196f61a2017-06-30 15:42:29 -0700139Return Values
140-------------
141
142The job may return some values to Zuul to affect its behavior. To
143return a value, use the *zuul_return* Ansible module in a job
144playbook. For example::
145
146 tasks:
147 - zuul_return:
148 data:
149 foo: bar
150
151Will return the dictionary "{'foo': 'bar'}" to Zuul.
152
153.. TODO: xref to section describing formatting
154
155Several uses of these values are planned, but the only currently
156implemented use is to set the log URL for a build. To do so, set the
157**zuul.log_url** value. For example::
158
159 tasks:
160 - zuul_return:
161 data:
162 zuul:
163 log_url: http://logs.example.com/path/to/build/logs