James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 1 | :title: Connection Configuration |
| 2 | |
| 3 | .. _connection-config: |
| 4 | |
| 5 | Connection Configuration |
| 6 | ======================== |
| 7 | |
| 8 | Most of Zuul's configuration is contained in the git repositories upon |
| 9 | which Zuul operates, however, some configuration outside of git |
| 10 | repositories is still required to bootstrap the system. This includes |
| 11 | information on connections between Zuul and other systems, as well as |
| 12 | identifying the projects Zuul uses. |
| 13 | |
| 14 | .. _connections: |
| 15 | |
| 16 | Connections |
| 17 | ----------- |
| 18 | |
| 19 | In order to interact with external systems, Zuul must have a |
| 20 | *connection* to that system configured. Zuul includes a number of |
| 21 | drivers, each of which implements the functionality necessary to |
| 22 | connect to a system. Each connection in Zuul is associated with a |
| 23 | driver. |
| 24 | |
| 25 | To configure a connection in Zuul, select a unique name for the |
James E. Blair | 5398ad5 | 2017-08-03 15:55:04 -0700 | [diff] [blame] | 26 | connection and add a section to ``zuul.conf`` with the form |
| 27 | ``[connection NAME]``. For example, a connection to a gerrit server |
| 28 | may appear as: |
| 29 | |
| 30 | .. code-block:: ini |
James E. Blair | eff5a9d | 2017-06-20 00:00:37 -0700 | [diff] [blame] | 31 | |
| 32 | [connection mygerritserver] |
| 33 | driver=gerrit |
| 34 | server=review.example.com |
| 35 | |
| 36 | .. _drivers: |
| 37 | |
| 38 | Drivers |
| 39 | ------- |
| 40 | |
| 41 | Drivers may support any of the following functions: |
| 42 | |
| 43 | * Sources -- hosts git repositories for projects. Zuul can clone git |
| 44 | repos for projects and fetch refs. |
| 45 | * Triggers -- emits events to which Zuul may respond. Triggers are |
| 46 | configured in pipelines to cause changes or other refs to be |
| 47 | enqueued. |
| 48 | * Reporters -- outputs information when a pipeline is finished |
| 49 | processing an item. |
| 50 | |
| 51 | Zuul includes the following drivers: |
| 52 | |
| 53 | .. toctree:: |
| 54 | :maxdepth: 2 |
| 55 | |
| 56 | drivers/gerrit |
| 57 | drivers/github |
| 58 | drivers/smtp |
| 59 | drivers/sql |
| 60 | drivers/timer |
| 61 | drivers/zuul |