Remove files and fakes related to Jenkins. Since the 'targets' config section was for mapping to Jenkins, this isn't needed either. Change-Id: Ib5c615a95fcdce5234b3c63957171d77b8fbc65d
14 KiB
Configuration
Nodepool reads its secure configuration from
/etc/nodepool/secure.conf by default. The secure file is a
standard ini config file, with one section for the database.
[database] dburi={dburi}
Following settings are available:
**required**
dburiIndicates the URI for the database connection. See the SQLAlchemy documentation for the syntax. Example:dburi='mysql+pymysql://nodepool@localhost/nodepool'
Nodepool reads its configuration from
/etc/nodepool/nodepool.yaml by default. The configuration
file follows the standard YAML syntax with a number of sections defined
with top level keys. For example, a full configuration file may have the
diskimages, labels, and providers
sections:
diskimages:
...
labels:
...
providers:
...
The following sections are available. All are required unless otherwise indicated.
elements-dir
If an image is configured to use diskimage-builder and glance to
locally create and upload images, then a collection of diskimage-builder
elements must be present. The elements-dir parameter
indicates a directory that holds one or more elements.
Example:
elements-dir: /path/to/elements/dir
images-dir
When we generate images using diskimage-builder they need to be
written to somewhere. The images-dir parameter is the place
to write them.
Example:
images-dir: /path/to/images/dir
cron
This section is optional.
Nodepool runs several periodic tasks. The cleanup task
deletes old images and servers which may have encountered errors during
their initial deletion. The check task attempts to log into
each node that is waiting to be used to make sure that it is still
operational. The following illustrates how to change the schedule for
these tasks and also indicates their default values:
cron:
cleanup: '27 */6 * * *'
check: '*/15 * * * *'
zookeeper-servers
Lists the ZooKeeper servers uses for coordinating information between nodepool workers. Example:
zookeeper-servers:
- host: zk1.example.com
port: 2181
chroot: /nodepool
The port key is optional (default: 2181).
The chroot key, used for interpreting ZooKeeper paths
relative to the supplied root path, is also optional and has no
default.
labels
Defines the types of nodes that should be created. Maps node types to the images that are used to back them and the providers that are used to supply them. Jobs should be written to run on nodes of a certain label. Example:
labels:
- name: my-precise
image: precise
min-ready: 2
providers:
- name: provider1
- name: provider2
- name: multi-precise
image: precise
min-ready: 2
ready-script: setup_multinode.sh
providers:
- name: provider1
required
nameUnique name used to tie jobs to those instances.
imageRefers to providers images, see
images.providers(list)Required if any nodes should actually be created (e.g., the label is not currently disabled, see
min-readybelow).
optional
min-ready(default: 2)Minimum instances that should be in a ready state. Set to -1 to have the label considered disabled.
min-readyis best-effort based on available capacity and is not a guaranteed allocation.ready-scriptA script to be used to perform any last minute changes to a node after it has been launched but before it is put in the READY state to receive jobs. For more information, see
scripts.
diskimages
This section lists the images to be built using diskimage-builder.
The name of the diskimage is mapped to the images section of the
provider, to determine which providers should received uploads of each
image. The diskimage will be built in every format required by the
providers with which it is associated. Because Nodepool needs to know
which formats to build, if the diskimage will only be built if it
appears in at least one provider.
To remove a diskimage from the system entirely, remove all associated
entries in images and
remove its entry from diskimages. All
uploads will be deleted as well as the files on disk.
Example configuration:
diskimages:
- name: ubuntu-precise
pause: False
rebuild-age: 86400
elements:
- ubuntu-minimal
- vm
- simple-init
- openstack-repos
- nodepool-base
- cache-devstack
- cache-bindep
- growroot
- infra-package-needs
release: precise
env-vars:
TMPDIR: /opt/dib_tmp
DIB_CHECKSUM: '1'
DIB_IMAGE_CACHE: /opt/dib_cache
DIB_APT_LOCAL_CACHE: '0'
DIB_DISABLE_APT_CLEANUP: '1'
FS_TYPE: ext3
- name: ubuntu-xenial
pause: True
rebuild-age: 86400
formats:
- raw
- tar
elements:
- ubuntu-minimal
- vm
- simple-init
- openstack-repos
- nodepool-base
- cache-devstack
- cache-bindep
- growroot
- infra-package-needs
release: precise
env-vars:
TMPDIR: /opt/dib_tmp
DIB_CHECKSUM: '1'
DIB_IMAGE_CACHE: /opt/dib_cache
DIB_APT_LOCAL_CACHE: '0'
DIB_DISABLE_APT_CLEANUP: '1'
FS_TYPE: ext3
required
nameIdentifier to reference the disk image in
imagesandlabels.
optional
formats(list)The list of formats to build is normally automatically created based on the needs of the providers to which the image is uploaded. To build images even when no providers are configured or to build additional formats which you know you may need in the future, list those formats here.
rebuild-ageIf the current diskimage is older than this value (in seconds), then nodepool will attempt to rebuild it. Defaults to 86400 (24 hours).
releaseSpecifies the distro to be used as a base image to build the image using diskimage-builder.
elements(list)Enumerates all the elements that will be included when building the image, and will point to the
elements-dirpath referenced in the same config file.env-vars(dict)Arbitrary environment variables that will be available in the spawned diskimage-builder child process.
pause(bool)When set to True, nodepool-builder will not build the diskimage.
provider
Lists the OpenStack cloud providers Nodepool should use. Within each
provider, the Nodepool image types are also defined (see images for details).
Example:
providers:
- name: provider1
cloud: example
region-name: 'region1'
max-servers: 96
rate: 1.0
availability-zones:
- az1
boot-timeout: 120
launch-timeout: 900
launch-retries: 3
image-name-format: 'template-{image_name}-{timestamp}'
hostname-format: '{label.name}-{provider.name}-{node.id}'
ipv6-preferred: False
networks:
- name: 'some-network-name'
images:
- name: trusty
min-ram: 8192
name-filter: 'something to match'
username: jenkins
user-home: '/home/jenkins'
private-key: /var/lib/jenkins/.ssh/id_rsa
meta:
key: value
key2: value
- name: precise
min-ram: 8192
username: jenkins
user-home: '/home/jenkins'
private-key: /var/lib/jenkins/.ssh/id_rsa
- name: devstack-trusty
min-ram: 30720
username: jenkins
private-key: /home/nodepool/.ssh/id_rsa
- name: provider2
username: 'username'
password: 'password'
auth-url: 'http://auth.provider2.example.com/'
project-name: 'project'
service-type: 'compute'
service-name: 'compute'
region-name: 'region1'
max-servers: 96
rate: 1.0
image-name-format: 'template-{image_name}-{timestamp}'
hostname-format: '{label.name}-{provider.name}-{node.id}'
images:
- name: precise
min-ram: 8192
username: jenkins
user-home: '/home/jenkins'
private-key: /var/lib/jenkins/.ssh/id_rsa
meta:
key: value
key2: value
cloud configuration*
preferred
cloudThere are two methods supported for configuring cloud entries. The preferred method is to create an~/.config/openstack/clouds.yamlfile containing your cloud configuration information. Then, usecloudto refer to a named entry in that file.More information about the contents of clouds.yaml can be found in the os-client-config documentation.
compatablity
For backwards compatibility reasons, you can also include portions of the cloud configuration directly in
nodepool.yaml. Not all of the options settable viaclouds.yamlare available.
username
password
project-idORproject-nameSome clouds may refer to the
project-idastenant-id. Some clouds may refer to theproject-nameastenant-name.auth-urlKeystone URL.
image-typeSpecifies the image type supported by this provider. The disk images built by diskimage-builder will output an image for each
image-typespecified by a provider using that particular diskimage.By default,
image-typeis set to the value returned fromos-client-configand can be omitted in most cases.
required
name
max-serversMaximum number of servers spawnable on this provider.
optional
availability-zones(list)Without it nodepool will rely on nova to schedule an availability zone.
If it is provided the value should be a list of availability zone names. Nodepool will select one at random and provide that to nova. This should give a good distribution of availability zones being used. If you need more control of the distribution you can use multiple logical providers each providing a different list of availabiltiy zones.
boot-timeoutOnce an instance is active, how long to try connecting to the image via SSH. If the timeout is exceeded, the node launch is aborted and the instance deleted.
In seconds. Default 60.
launch-timeoutThe time to wait from issuing the command to create a new instance until that instance is reported as "active". If the timeout is exceeded, the node launch is aborted and the instance deleted.
In seconds. Default 3600.
launch-retriesThe number of times to retry launching a server before considering the job failed.
Default 3.
keypairDefault None
networks(dict)Specify custom Neutron networks that get attached to each node. Specify the
nameof the network (a string).ipv6-preferredIf it is set to True, nodepool will try to find ipv6 in public net first as the ip address for the ssh connection. If ipv6 is not found or the key is not specified or set to False, ipv4 address will be used.
api-timeout(compatability)Timeout for the OpenStack API calls client in seconds. Prefer setting this in clouds.yaml
service-type(compatability)Prefer setting this in clouds.yaml.
service-name(compatability)Prefer setting this in clouds.yaml.
region-name
hostname-formatHostname template to use for the spawned instance. Default
{label.name}-{provider.name}-{node.id}image-name-formatFormat for image names that are uploaded to providers. Default
template-{image_name}-{timestamp}rateIn seconds. Default 1.0.
clean-floating-ipsIf it is set to True, nodepool will assume it is the only user of the OpenStack project and will attempt to clean unattached floating ips that may have leaked around restarts.
max-concurrencyMaximum number of node requests that this provider is allowed to handle concurrently. The default, if not specified, is to have no maximum. Since each node request is handled by a separate thread, this can be useful for limiting the number of threads used by the nodepoold daemon.
images
Each entry in a provider's images
section must correspond to an entry in diskimages. Such an entry indicates that the
corresponding diskimage should be uploaded for use in this provider.
Additionally, any nodes that are created using the uploaded image will
have the associated attributes (such as flavor or metadata).
If an image is removed from this section, any previously uploaded images will be deleted from the provider.
Example configuration:
images:
- name: precise
pause: False
min-ram: 8192
name-filter: 'something to match'
username: jenkins
private-key: /var/lib/jenkins/.ssh/id_rsa
meta:
key: value
key2: value
required
nameIdentifier to refer this image from
labelsanddiskimagessections.min-ramDetermine the flavor to use (e.g.
m1.medium,m1.large, etc). The smallest flavor that meets themin-ramrequirements will be chosen. To further filter by flavor name, see optionalname-filterbelow.
optional
name-filterAdditional filter complementing
min-ram, will be required to match on the flavor-name (e.g. Rackspace offer a "Performance" flavour; setting name-filter toPerformancewill ensure the chosen flavor also contains this string as well as meeting min-ram requirements).pause(bool)When set to True, nodepool-builder will not upload the image to the provider.
usernameNodepool expects that user to exist after running the script indicated by
setup. Defaultjenkinsprivate-keyDefault
/var/lib/jenkins/.ssh/id_rsaconfig-drive(boolean)Whether config drive should be used for the image.
meta(dict)Arbitrary key/value metadata to store for this server using the Nova metadata service. A maximum of five entries is allowed, and both keys and values must be 255 characters or less.