Ansible job definitions for Zuul
Go to file
James E. Blair e7a0f0da8b run-buildset-registry: run a dual registry
The docker registry daemon can either act as a private registry,
or as a pull-through proxy, but not both.  Yet we need to be able
to serve private (speculative buildset) images as well as plain
upstream images.  Our registry is used as a mirror and requires
authentication, therefore docker's normal behavior of falling back
on docker.io won't work because it will attempt to use our
credentials.

However, the registry daemon stores all of its state in the
filesystem, therefore we can run two instances of the registry
service, both pointing at the same data store.  The first acts
as a pull-through proxy and will serve whatever files are already
in the local storage, or will fetch them from docker.io.  The second
can be used to upload images into the local storage.

To make a long story short, whenever we push into the buildset
registry, we will use the second endpoint.  Whenever the docker
daemon pulls from the buildset registry, it will use the first.

Change-Id: I296029068b5ef28ee56543741fe8c8deeefb5dfa
2019-02-21 13:49:49 -08:00
doc/source Propose some job writing guidelines 2019-01-21 22:40:57 +01:00
playbooks Add docker image build jobs 2019-01-22 09:02:44 -08:00
roles run-buildset-registry: run a dual registry 2019-02-21 13:49:49 -08:00
tests Add a python unit test framework 2018-07-25 09:11:25 -07:00
.gitignore Add a python unit test framework 2018-07-25 09:11:25 -07:00
.gitreview Added .gitreview 2017-05-24 19:48:52 +00:00
.stestr.conf Add a python unit test framework 2018-07-25 09:11:25 -07:00
bindep.txt Updated bindep to cover for MacOS requirements 2018-10-27 16:31:33 +00:00
LICENSE Add initial license, docs, and other config 2017-06-08 14:01:21 -07:00
README.rst Add installation/deprecation documentation 2018-04-11 08:03:57 -07:00
setup.cfg Add initial license, docs, and other config 2017-06-08 14:01:21 -07:00
setup.py Add initial license, docs, and other config 2017-06-08 14:01:21 -07:00
test-requirements.txt Pin ansible-lint to < 4 2019-01-04 22:03:40 +00:00
tox.ini Set ANSIBLE_ACTION_PLUGINS for linters 2019-01-18 17:48:29 -05:00
zuul.yaml Update playbook paths for docker image build jobs 2019-01-26 15:42:50 +00:00

Zuul Jobs

This repo contains a set of Zuul jobs and Ansible roles suitable for use by any Zuul system.