Ansible role to manage Nodepool
Go to file
Paul Belanger 2658537bb4
Per service configuration
Since it is possible to run both nodepool and nodepool-builder, we
should give the user 2 different configuration files.

Change-Id: I9e825a331d04124a2548203cfd8d77935fdf7bb6
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2016-08-31 20:40:16 -04:00
defaults Per service configuration 2016-08-31 20:40:16 -04:00
doc/source Simplify documentation 2015-11-21 18:51:10 -05:00
files/etc Per service configuration 2016-08-31 20:40:16 -04:00
meta Add ansible 2.0 support 2016-01-26 12:31:52 -05:00
tasks Per service configuration 2016-08-31 20:40:16 -04:00
templates Make clouds.yaml actually yaml 2016-02-16 09:02:05 -05:00
tests Per service configuration 2016-08-31 20:40:16 -04:00
vars Per service configuration 2016-08-31 20:40:16 -04:00
.gitignore Add documentation requirements for gate 2015-11-21 17:59:29 -05:00
.gitreview Add .gitreview 2015-11-11 15:49:11 -05:00
LICENSE Apache License 2.0 2015-08-30 12:04:31 -04:00
README.rst Drop sudoers support 2015-12-11 12:20:38 -05:00
other-requirements.txt Add other-requirements.txt for bindep 2016-03-28 10:43:14 -04:00
requirements.txt Add ansible 2.0 support 2016-01-26 12:31:52 -05:00
setup.cfg Add documentation requirements for gate 2015-11-21 17:59:29 -05:00
setup.py Add documentation requirements for gate 2015-11-21 17:59:29 -05:00
test-requirements.txt Add documentation requirements for gate 2015-11-21 17:59:29 -05:00
tox.ini Fix sudo permissions for elements and scripts dir 2016-02-13 13:14:46 -05:00

README.rst

ansible-role-nodepool

Ansible role to manage Nodepool

Description

Nodepool is a system for launching single-use test nodes on demand based on images built with cached data. It is designed to work with any OpenStack based cloud, and is part of a suite of tools that form a comprehensive test system including Jenkins and Zuul.

Requirements

Packages

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

Sudo

You will be required to create the appropriate sudoers file if you plan on creating DIBs.

Role Variables

# Name of the user to be created.
# Default: nodepool
nodepool_user_name: nodepool

# Name of the group to be created.
# Default: nodepool
nodepool_user_group: nodepool

# Path of home directory to be created.
# Default: /var/lib/nodepool
nodepool_user_home: /var/lib/nodepool

# Path to folder containing elements used by nodepool.
# Default: ""
nodepool_elements_dir: ""

# Path to folder containing scripts used by nodepool.
# Default: ""
nodepool_scripts_dir: ""

Dependencies

Example Playbook

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