James E. Blair | 4ce47da | 2013-12-05 14:06:08 -0800 | [diff] [blame] | 1 | :title: Zuul Client |
| 2 | |
| 3 | Zuul Client |
| 4 | =========== |
| 5 | |
| 6 | Zuul includes a simple command line client that may be used by |
| 7 | administrators to affect Zuul's behavior while running. It must be |
| 8 | run on a host that has access to the Gearman server (e.g., locally on |
| 9 | the Zuul host). |
| 10 | |
| 11 | Configuration |
| 12 | ------------- |
| 13 | |
| 14 | The client uses the same zuul.conf file as the server, and will look |
| 15 | for it in the same locations if not specified on the command line. |
| 16 | |
| 17 | Usage |
| 18 | ----- |
| 19 | The general options that apply to all subcommands are: |
| 20 | |
| 21 | .. program-output:: zuul --help |
| 22 | |
| 23 | The following subcommands are supported: |
| 24 | |
| 25 | Enqueue |
| 26 | ^^^^^^^ |
| 27 | .. program-output:: zuul enqueue --help |
| 28 | |
| 29 | Example:: |
| 30 | |
Akihiro Motoki | 7109dc6 | 2014-02-10 19:09:28 +0900 | [diff] [blame^] | 31 | zuul enqueue --trigger gerrit --pipeline check --project example_project --change 12345,1 |
| 32 | |
| 33 | Note that the format of change id is <number>,<patchset>. |