Operation
You can run any zuul process with the -d option to make it not daemonize. It’s a good idea at first to confirm there’s no issues with your configuration.
To start, simply run:
zuul-scheduler
Once run you should have two zuul-scheduler processes (if using the built-in gearman server, or one process otherwise).
Before Zuul can run any jobs, it needs to load its configuration, most of which is in the git repositories that Zuul operates on. Start an executor to allow zuul to do that:
zuul-executor
Zuul should now be able to read its configuration from the configured repo and process any jobs defined therein.
Scheduler
Operation
To start the scheduler, run zuul-scheduler
. To stop it, run
zuul-scheduler stop
.
Reconfiguration
Most of Zuul’s configuration is automatically updated as changes to the repositories which contain it are merged. However, Zuul must be explicitly notified of changes to the tenant config file, since it is not read from a git repository. Zuul supports two kinds of reconfigurations.
The full reconfiguration refetches and reloads the configuration of
all tenants. To do so, run zuul-scheduler full-reconfigure
. For
example this can be used to fix eventual configuration inconsistencies
after connection problems to Gerrit/Github.
The smart reconfiguration reloads only the tenants that changed their
configuration in the tenant config file. To do so, run
zuul-scheduler smart-reconfigure
. In multi tenant systems this can
be much faster than the full reconfiguration so it is recommended to
use the smart reconfiguration after changing the tenant configuration
file.
Merger
Operation
To start the merger, run zuul-merger
.
In order to stop the merger and under normal circumstances it is
best to pause and wait for all currently running tasks to finish
before stopping it. To do so run zuul-merger pause
.
To stop the merger immediately, run zuul-merger stop
.
Executor
Operation
To start the executor, run zuul-executor
.
There are several commands which can be run to control the executor’s behavior once it is running.
To pause the executor and prevent it from running new jobs you can
run zuul-executor pause
.
To cause the executor to stop accepting new jobs and exit when all running
jobs have finished you can run zuul-executor graceful
. Under most
circumstances this will be the best way to stop Zuul.
To stop the executor immediately, run zuul-executor stop
. Jobs that were
running on the stopped executor will be rescheduled on other executors.
The executor normally responds to a SIGTERM
signal in the same way
as the graceful
command, however you can change this behavior to match
stop
with the executor.sigterm_method setting.
To enable or disable running Ansible in verbose mode (with the
-vvv
argument to ansible-playbook) run zuul-executor verbose
and zuul-executor unverbose
.
Ansible and Python 3
As noted above, the executor runs Ansible playbooks against the remote
node(s) allocated for the job. Since part of executing playbooks on
remote hosts is running Python scripts on them, Ansible needs to know
what Python interpreter to use on the remote host. With older
distributions, /usr/bin/python2
was a generally sensible choice.
However, over time a heterogeneous Python ecosystem has evolved where
older distributions may only provide Python 2, most provide a mixed
2/3 environment and newer distributions may only provide Python 3 (and
then others like RHEL8 may even have separate “system” Python versions
to add to confusion!).
Ansible’s ansible_python_interpreter
variable configures the path
to the remote Python interpreter to use during playbook execution.
This value is set by Zuul from the python-path
specified for the
node by Nodepool; see the nodepool configuration documentation.
This defaults to auto
, where Ansible will automatically discover
the interpreter available on the remote host. However, this setting
only became available in Ansible >=2.8, so Zuul will translate
auto
into the old default of /usr/bin/python2
when configured
to use older Ansible versions.
Thus for modern Python 3-only hosts no further configuration is needed
when using Ansible >=2.8 (e.g. Fedora, Bionic onwards). If using
earlier Ansible versions you may need to explicitly set the
python-path
if /usr/bin/python2
is not available on the node.
Ansible roles/modules which include Python code are generally Python 3 safe now, but there is still a small possibility of incompatibility. See also the Ansible Python 3 support page.
Web Server
Operation
To start the web server, run zuul-web
. To stop it, kill the
PID which was saved in the pidfile specified in the configuration.
Finger Gateway
Operation
To start the finger gateway, run zuul-fingergw
. To stop it, kill the
PID which was saved in the pidfile specified in the configuration.