Ansible role to manage Zuul
Go to file
Paul Belanger f1cd85520b Fix truthy value should be true or false warnings
Running yamllint, this exposed the follow warnings. Lets clean them up
before we switch to molecule.

Change-Id: I7eec334124e8c5eecb5a0b5670f0e512ef50a607
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2018-08-19 12:33:51 -04:00
defaults Fix truthy value should be true or false warnings 2018-08-19 12:33:51 -04:00
doc/source Import ansible-role-zuul into OpenStack workflow 2015-11-24 11:38:17 -05:00
handlers Fix truthy value should be true or false warnings 2018-08-19 12:33:51 -04:00
meta Bump minimal version of ansible to 2.4.0 2018-04-19 16:13:58 -04:00
tasks Fix truthy value should be true or false warnings 2018-08-19 12:33:51 -04:00
templates/etc Stop setting pidfile for zuul.conf 2018-04-16 11:41:17 -04:00
tests Replace layout config with main.yaml 2018-04-15 15:50:07 -04:00
vars Add new build dependencies 2018-04-19 16:12:27 -04:00
.gitignore Import ansible-role-zuul into OpenStack workflow 2015-11-24 11:38:17 -05:00
.gitreview Import ansible-role-zuul into OpenStack workflow 2015-11-24 11:38:17 -05:00
.zuul.yaml Gate on ubuntu bionic 2018-07-31 20:44:47 -04:00
LICENSE Initial commit 2015-09-10 16:50:05 -04:00
README.rst Default zuul_pip_executable to pip3 2018-04-13 13:00:49 -04:00
bindep.txt Move ansible dependency to bindep.txt 2018-03-08 20:57:47 -05:00
requirements.txt Bump minimal version of ansible to 2.4.0 2018-04-19 16:13:58 -04:00
setup.cfg Import ansible-role-zuul into OpenStack workflow 2015-11-24 11:38:17 -05:00
setup.py Import ansible-role-zuul into OpenStack workflow 2015-11-24 11:38:17 -05:00
test-requirements.txt Import ansible-role-zuul into OpenStack workflow 2015-11-24 11:38:17 -05:00
tox.ini Limit linters to current working directory 2018-04-26 15:32:54 -04:00

README.rst

ansible-role-zuul

Ansible role to manage Zuul

Description

Zuul is a program that is used to gate the source code repository of a project so that changes are only merged if they pass tests.

Requirements

  • pip3 to be installed if using zuul_install_method: (git|pip)

See bindep.txt for role dependencies.

Packages

Package repository index files should be up to date before using this role, we do not manage them.

SSH

An SSH private key will need to be installed before you can use zuul. The contents of the private key will be used by zuul_config_gerrit_user and should be copied to zuul_config_gerrit_sshkey.

Role Variables

# Method used to install zuul. Valid values are git and pip.
# Default: git
zuul_install_method: git

# Git, SSH, or HTTP(s) protocol address of the git repository.
# Default: https://git.openstack.org/openstack-infra/zuul
zuul_git_uri: https://git.openstack.org/openstack-infra/zuul

# What version of the repository to check out.
# Default: master
zuul_git_version: master

# Absolute path of where the repository should be checked out to.
# Default: /opt/ansible-role-zuul/git/openstack-infra/zuul
zuul_git_dest: /opt/ansible-role-zuul/git/openstack-infra/zuul

# The version number to install from the Python Package Index.
# Default: None
zuul_pip_version:

# Name of the user to be created.
# Default: zuul
zuul_user_name: zuul

# Name of the group to be created.
# Default: zuul
zuul_user_group: zuul

# Path of home directory to be created.
# Default: /var/lib/zuul
zuul_user_home: /var/lib/zuul

Zuul Merger Configuration

# Value to pass to git config user.email.
# Default: Empty
zuul_config_merger_git_user_email: ""

# Value to pass to git config user.name.
# Default: Empty
zuul_config_merger_git_user_name: ""

Dependencies

Example Playbook

- name: Install zuul
  hosts: zuul
  roles:
    - ansible-role-zuul