Flexible and easy to use operating system installation tool.
Go to file
Evgeny L 6aebe663d2 Change version of bareon to 0.0.1.a1
Version of bareon has to be changed from 0.0.1.dev1
to 0.0.1.a1 since .dev1 does not match to regexp
in publishing gate.

Change-Id: Id9be97f91ddf430a90ead8b396dea53ea14b1905
Closes-bug: #1565862
2016-04-15 17:55:46 +03:00
bareon Introduce Flow DeployDriver 2016-04-07 20:20:13 +03:00
cloud-init-templates Merge "Disable launching etckeeper each puppet run" 2015-10-22 09:59:05 +00:00
contrib Use bareon-* namespace for command line entry points 2015-12-15 18:02:44 +03:00
doc Don't use default openstack theme for readthedocs 2015-12-14 16:27:53 +03:00
etc Graduate to using oslo-config-generator 2016-03-15 15:22:02 -04:00
.gitignore Added infrastructure files 2015-07-14 14:54:56 +03:00
.gitreview Change path to the repo in .gitreview file from fuel-agent to bareon 2015-12-14 13:06:17 +00:00
LICENSE Add README.md and LICENSE 2015-10-15 13:41:17 +03:00
MAINTAINERS Update MAINTAINERS 2015-11-23 15:54:39 +03:00
README.md Contribute core Cray changes to Bareon 2016-03-23 16:42:32 +02:00
openstack-common.conf Cleanup unused Oslo Incubator code 2016-03-17 14:15:50 -04:00
requirements.txt Update from global requirements 2016-03-01 16:54:28 +02:00
run_tests.sh Added infrastructure files 2015-07-14 14:54:56 +03:00
setup.cfg Change version of bareon to 0.0.1.a1 2016-04-15 17:55:46 +03:00
setup.py Update from global requirements 2016-03-01 16:54:28 +02:00
test-requirements.txt Update from global requirements 2016-03-01 16:54:28 +02:00
tox.ini Graduate to using oslo-config-generator 2016-03-15 15:22:02 -04:00

README.md

Bareon

Table of Contents

Overview

Bareon is nothing more than just a set of data driven executable scripts.

  • One of these scripts is used for building operating system images. One can run this script on wherever needed passing a set of repository URIs and a set of package names that are to be installed into the image.
  • Another script is used for the actual provisioning. This script being installed into a ramdisk (live image) can be run to provision an operating system on a hard drive. When running one needs to pass input data that contain information about disk partitions, initial node configuration, operating system image location, etc. This script is to prepare disk partitions according to the input data, download operating system images and put these images on partitions.

Motivation

  • Native operating installation tools like anaconda and debian-installer are:
    • hard to customize (if the case is really non-trivial)
    • hard to troubleshoot (it is usually quite difficult to understand which log file contains necessary information and how to run those tools in debug mode)
  • Image based approach to operating system installation allows to make this process really scalable. For example, we can use BitTorrent based image delivery scheme when provisioning that makes the process easily scalable up to thousands of nodes.
  • When provisioning we can check hash sum of the image and use other validation mechanisms that can make the process more stable.

Designed to address requirements

  • Support various input data formats (pluggable input data drivers)
  • Support plain partitions, lvm, md, root on lvm, etc.
  • Be able to do initial node configuration (network, mcollective, puppet, ntp)
  • Be able to deploy standalone OS (local kernel, local bootloader)
  • Support various image storages (tftp, http, torrent)
  • Support various image formats (compressed, disk image, fs image, tar image)

Design outline

  • Use cloud-init for initial node configuration
  • Avoid using parted and lvm native python bindings (to make it easy to troubleshoot and modify for deployment engineers)
  • No REST API, just executable entry points (like /usr/bin/fa_*)
  • Passing input data either via file (--input_data_file) or CLI parameter (--input_data)
  • Detailed logging of all components

Structure

Basic Repository Layout

bareon
├── cloud-init-templates
├── contrib
├── debian
├── etc
├── bareon
│   ├── cmd
│   ├── drivers
│   ├── objects
│   ├── openstack
│   ├── tests
│   ├── utils
├── openstack-common.conf
├── README.md
├── LICENSE
├── requirements.txt
├── run_tests.sh
├── setup.cfg
├── setup.py
├── specs
├── test-requirements.txt

root

The root level contains important repository documentation and license information. It also contais files which are typical for the infracture of python project such as requirements.txt and setup.py

cloud-init-templates

This folder contains Jinja2 templates to prepare cloud-init related data for nocloud datasource.

contrib

This directory contains third party code that is not a part of bareon itself but can be used together with bareon.

debian

This folder contains the DEB package specification. Included debian rules are mainly suitable for Ubuntu 12.04 or higher.

etc

This folder contains the sample config file for bareon. Every parameter is well documented. We use oslo-config as a configuration module.

bareon

This folder contains the python code: drivers, objects, unit tests and utils, manager and entry points.

  • bareon/cmd/agent.py
    • That is where executable entry points are. It reads input data and instantiates DeployDriver class with these data.
  • bareon/manager.py
    • That is the file where the top level agent logic is implemented. It contains all those methods which do something useful (do_*)
  • bareon/drivers
    • That is where input data drivers are located. (Nailgun, NailgunBuildImage, Simple etc.) Data drivers convert json into a set of python objects.
  • bareon/objects
    • Here is the place where python objects are defined. Bareon manager does not understand any particular data format except these objects. For example, to do disk partitioning we need PartitionScheme object. PartitionScheme object in turn contains disk labels, plain partitions, lvm, md, fs objects. This PartitionScheme object is to be created by input data driver.
  • bareon/utils
    • That is the place where we put the code which does something useful on the OS level. Here we have simple parted, lvm, md, grub bindings, etc.

specs

This folder contains the RPM package specfication file. Included RPM spec is mainly suitable for Centos 6.x or higher.

Usage

Use case #1 (Fuel)

Bareon is used in Fuel project as a part of operating system provisioning scheme. When a user starts deployment of OpenStack cluster, the first task is to install an operating system on slave nodes. First, Fuel runs bareon on the master node to build OS images. Once images are built, Fuel then runs bareon on slave nodes using Mcollective. Slave nodes are supposed to be booted with so called bootstrap ramdisk. Bootstrap ramdisk is an in-memory OS where bareon is installed.

Detailed documentation on this case is available here:

Use case #2 (Independent on Fuel)

Bareon can easily be used in third party projects as a convenient operating system provisioning tool. As described above bareon is fully data driven and supports various input data formats using pluggable input data drivers. Currently there are three input data drivers available. Those are

  • NailgunBuildImage and Nailgun
    • Build image and provisioning input data drivers used in Fuel project. To use them independently read Fuel documentation.
  • NailgunSimpleDriver
    • bareon native partitioning input data driver. It is just a de-serializer for bareon PartitionScheme object.

In order to be able to use another specific data format one can implement his own data driver and install it independently. Bareon uses stevedore to find installed drivers. A new driver needs to be exposed via bareon.driver setuptools name space. See for example setup.cfg file where entry points are defined.

One can also take a look at contrib directory for some additional examples.

How to install

Bareon can be installed either using RPM/DEB packages or using python setup.py install.

Development

Bareon currently follows openstack contribution guidelines.

Core Reviewers

Contributors