summaryrefslogtreecommitdiff
path: root/setup.cfg
Commit message (Collapse)AuthorAgeFilesLines
* Add finger gatewayDavid Shrewsbury2017-12-131-0/+1
| | | | | | | | | | | | | This adds the zuul-fingergw app that should be run as root (so that it can connect to the standard finger port 79), but changes user privs immediately after binding that port. Common streaming functions have been moved to streamer_utils.py to be shared among modules. Support for CommandSocket has been included. Change-Id: Ia35492fe951e7b9367eeab0b145d96189d72c364
* Add migration tool for v2 to v3 conversionMonty Taylor2017-09-101-0/+3
| | | | | | | | We need to be able to generate a new v3 config based on our old v2 config. It won't be perfect, but should ultimately be no worse than the v2.5 auto-generated playbooks. Change-Id: I9cb676ceff01bbdb845d22774edbaa718323db27
* Add web-based console log streamingMonty Taylor2017-07-101-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | zuul now provides socket-based console streaming, which is super cool. In order to have jenkins parity with web streaming, we need to provide a websocket (javascript in browsers can't really connect to random ports on servers) After surveying the existing python websocket options, basically all of them are based around twisted, eventlet, gevent or asyncio. It's not just a thing we can easily deal with from our current webob/paste structure, because it is a change to the fundamental HTTP handling. While we could write our own websocket server implementation that was threaded like the rest of zuul, that's a pretty giant amount of work. Instead, we can run an async-based server that's just for the websockets, so that we're not all of a sudden putting async code into the rest of zuul and winding up frankensteined. Since this is new code, using asyncio and python3 seems like an excellent starting place. aiohttp supports running a websocket server in a thread. It also supports doing other HTTP/REST calls, so by going aiohttp we can set ourselves up for a single answer for the HTTP tier. In order to keep us from being an open socket relay, we'll expect two parameters as the first message on the websocket - what's the zuul build uuid, and what log file do we want to stream. (the second thing, multiple log files, isn't supported yet by the rest of zuul, but one can imagine a future where we'd like to support that too, so it's in the protocol) The websocket server will then ask zuul over gearman for the IP and port associated with the build and logfile and will start streaming it to the socket. Ultimately we'll want the status page to make links of the form: /console.html?uuid=<uuid>&logfile=console.log and we'll want to have apache map the websocket server to something like /console. Co-Authored-By: Monty Taylor <mordred@inaugust.com> Change-Id: Idd0d3f9259e81fa9a60d7540664ce8d5ad2c298f
* Stop supporting python2Monty Taylor2017-06-161-3/+2
| | | | | | | | | | | | | | | | | | OpenStack Infra is running Zuul v3 on Python3. We're adding things, like the websockets streaming, that are python3 only - and testing them turns out to be extra hard even with skipTest because of the syntax changes. There are no legacy Zuul v3 installations to worry about, and the Software Factory team has verified that Python3 on CentOS 7 is not a problem. It's time to pull the plug. Remove python2 jobs from running in v3. Make the tox defaults python3 for all testenvs and update setup.cfg to indicate that Zuul v3 supports python3 and not python2. Also fixed a python3 bug in zuul command line client that shows up when running zuul --help under python3. Change-Id: Icaccab9f6edcdba0b87ec0b5f0411d3dc8030b42
* Add support for bwrapClint Byrum2017-06-011-0/+1
| | | | | | | | | | | | | | | | | | | This will be the minimum "batteries included" bubblwrap driver. It does not do any MAC configuration, since these vary by system. Operators may wish to wrap it further in a MAC wrapper driver. Because we set bubblewrap as the default wrapper, test_playbooks tests it. However, it lacks a negative test, so we won't know if we're not actually containing things. Users who don't have bubblewrap or don't wish to use it can set the untrusted_wrapper to 'nullwrap' which will just execute things as they're done before this change. Change-Id: I84dd7c8cc55d2110b58609784007ffda0d135716 Story: 2000910 Task: 3540 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
* Cleanup docs builds and error on warningsClark Boylan2017-04-061-0/+1
| | | | | | | | | | | | | The docs builds throw quite a few exceptions and warnings. Most of this is due to code that has moved around so autodoc can't import code to document that code. Update the names for code that has moved. There were also so small docstring indentation issues that are corrected. In addition to fixing these issues, update the minimum version of sphinx and set warning-is-error so that we avoid these problems in the future by gating on making sure they don't exist. Change-Id: Ic06775e7d1c8fbbfc5a8e6c412a2ad15f8699413
* Rename zuul-launcher to zuul-executorPaul Belanger2017-03-151-1/+1
| | | | | | | | To avoid confusion with nodepool-launcher, we've decided to rename zuul-launcher to zuul-executor. Change-Id: I7d03cf0f0093400f4ba2e4beb1c92694224a3e8c Signed-off-by: Paul Belanger <pabelanger@redhat.com>
* Merge branch 'master' into feature/zuulv3Joshua Hesketh2017-03-061-0/+4
|\ | | | | | | Change-Id: I37a3c5d4f12917b111b7eb624f8b68689687ebc4
| * Add support for sqlalchemy reporterJoshua Hesketh2017-02-061-0/+4
| | | | | | | | | | | | | | | | | | This will allow us to enter results from all jobs for use with the openstack-health dashboard. Depends-On: I08dbbb64b3daba915a94e455f75eef61ab392852 Change-Id: I28056d84a3f6abcd8d9038a91a6c9a3902142f90 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
* | Rename zuul-server zuul-schedulerJames E. Blair2017-02-151-1/+1
|/ | | | | | This is what we call it. Change-Id: If4ae79eddff9151979271ae7faf4348014528e46
* Add ansible launch serverJames E. Blair2016-04-221-0/+1
| | | | | | | As part of the Zuulv2.5 effort, this service is not designed to be long-lived. Change-Id: Idbac79f60cb694a9a707d204cd274328289bc20d
* Replace ci.o.o links with docs.o.o/infraJeremy Stanley2015-05-141-1/+1
| | | | | | | | | The http://ci.openstack.org/ documentation site has been deprecated, replaced by redirects to corresponding paths within http://docs.openstack.org/infra/ where other Project Infrastructure documentation already resides. Change-Id: I765c42294c478d88076959462c5316a620a4f24a
* cloner to easily clone dependent repositoriesAntoine Musso2014-07-291-0/+1
| | | | | | | The intent is to replace the devstack shell script with a python utility which would be easy to reuse. Change-Id: I3c8748e2544af80e72fdd0b2e3627b4fc2212c01
* Split the merger into a separate processJames E. Blair2014-02-171-0/+1
| | | | | | | | | | | | | | | Connect it to Zuul via Gearman. Any number of mergers may be deployed. Directly find the pipeline for a build when processing a result, so that the procedure is roughly the same for build and merge results. The timer trigger currently requires the gerrit trigger also be configured. Make that explicit inside of the timer trigger so that the scheduler API interaction with triggers is cleaner. Change-Id: I69498813764753c97c426e42d17596c2ef1d87cf
* Add a zuul clientJames E. Blair2013-12-021-0/+1
| | | | | | | | | | | | | | | | | | | Add a command line client called 'zuul' that supports one command to start with: 'enqueue'. It allows an operator (one with access to the gearman server) to enqueue an arbitrary change in a specified pipeline. It uses gearman to communicate with the Zuul server, which now has an added RPC listener component to answer such requests via gearman. Add tests for the client RPC interface. Raise an exception if a Gerrit query does not produce a change. Unlike events from Gerrit, user (or admin) submitted events over the RPC bus are more likely to reference invalid changes. To validate those, the Gerrit trigger will raise an exception (and remove from its cache) changes which prove to be invalid. Change-Id: Ife07683a736c15f4db44a0f9881f3f71b78716b2
* Remove usage of d2to1Monty Taylor2013-09-251-4/+0
| | | | | | | d2to1 pulls in setuptools, which trips the unhappy bugs with setuptools updating. Move past that and just use new pbr. Change-Id: I2609eda10ed781116940c3607ff85a14fc4b7f58
* Enable warnerrors for pbr to catch Sphinx warningsPaul Belanger2013-07-191-0/+3
| | | | | | | | With this change, we now should properly gate on Sphinx errors / warnings. Change-Id: I7e789ad83e81286575c74e1e5256da20a717e982 Signed-off-by: Paul Belanger <paul.belanger@polybeacon.com>
* Migrate to testrepository.Monty Taylor2013-06-271-7/+0
| | | | | | | | | | | | | Needed to move some directory creation around to be contained within the testcase, but with parallel testing, we shave 48 seconds off the run time and go from around 60s to around 11. We're also now compatible with future subunit-based fast-fail semantics when we grow them. Change-Id: I6c7148c29d1edb5d9469a8c2afe4b31b2b340009 Reviewed-on: https://review.openstack.org/33352 Approved: James E. Blair <corvus@inaugust.com> Reviewed-by: James E. Blair <corvus@inaugust.com> Tested-by: Jenkins
* Migrate to pbr.Monty Taylor2013-06-251-0/+26
| | | | | | | | | Change-Id: I734f0f8237fb603ee41a39f06e63c007e79825a9 Reviewed-on: https://review.openstack.org/33350 Reviewed-by: James E. Blair <corvus@inaugust.com> Reviewed-by: Doug Hellmann <doug.hellmann@dreamhost.com> Approved: James E. Blair <corvus@inaugust.com> Tested-by: Jenkins
* Restrict test coverage to the zuul package.Clark Boylan2012-09-101-0/+7
| | | | | | | | | | | We are not concerned with the code coverage of upstream libraries that are used in zuul. Restrict code coverage gathering to the zuul package. Change-Id: I62eb752c5fd0fe0289253c0b5c950382d760ea95 Reviewed-on: https://review.openstack.org/12725 Approved: James E. Blair <corvus@inaugust.com> Reviewed-by: James E. Blair <corvus@inaugust.com> Tested-by: Jenkins
* Add documentation.James E. Blair2012-06-081-0/+4
Change-Id: I8197ec2e52596fa4136f8af9aa93ea06e56d4d0d