blob: ad263277366ba69ed35702f1d186ac3a5019d34c [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
51Note that these git repositories are located on the executor; in order
52to be useful to most kinds of jobs, they will need to be present on
53the test nodes. The ``base`` job in the standard library contains a
54pre-playbook which copies the repositories to all of the job's nodes.
55It is recommended to always inherit from this base job to ensure that
56behavior.
57
58.. TODO: link to base job documentation and/or document src (and logs?) directory
59
60Zuul Variables
61--------------
62
63Zuul supplies not only the variables specified by the job definition
64to Ansible, but also some variables from the executor itself. They
65are:
66
67**zuul.executor.hostname**
68 The hostname of the executor.
69
70**zuul.executor.src_root**
71 The path to the source directory.
72
73**zuul.executor.log_root**
74 The path to the logs directory.
75
76SSH Keys
77--------
78
79Zuul starts each job with an SSH agent running and the key used to
80access the job's nodes added to that agent. Generally you won't need
81to be aware of this since Ansible will use this when performing any
82tasks on remote nodes. However, under some circumstances you may want
83to interact with the agent. For example, you may wish to add a key
84provided as a secret to the job in order to access a specific host, or
85you may want to, in a pre-playbook, replace the key used to log into
86the assigned nodes in order to further protect it from being abused by
87untrusted job content.
88
89.. TODO: describe standard lib and link to published docs for it.
90