roost

System provisioning toolkit.

Usage no npm install needed!

<script type="module">
  import roost from 'https://cdn.skypack.dev/roost';
</script>

README

 ____    _____   _____   ____    ______   
/\  _`\ /\  __`\/\  __`\/\  _`\ /\__  _\  
\ \ \L\ \ \ \/\ \ \ \/\ \ \,\L\_\/_/\ \/  
 \ \ ,  /\ \ \ \ \ \ \ \ \/_\__ \  \ \ \  
  \ \ \\ \\ \ \_\ \ \ \_\ \/\ \L\ \ \ \ \ 
   \ \_\ \_\ \_____\ \_____\ `\____\ \ \_\
    \/_/\/ /\/_____/\/_____/\/_____/  \/_/

Introduction

Roost is a simple provisioning system written on top of nodejs. It is like puppet and chef but heavily inspired by the clean and unobtrusive design of the nodejs module eco-system.

The Basics

Roost is configured through a simple configuration file, typically called roost.json, however other names can be used too. The file is used to describes how a system is provisioned, i.e what packages, services and other characteristics a system needs to adhere to.

When running roost without any command-line parameters it will try to look for the manifest file inside the current working directory. With the -r|--roost option you can specify any arbitrary file or directory to be used by roost. For example:

roost -r /path/to/folder # /path/to/folder/roost.json will be loaded
roost -r /path/to/file # /path/to/file will be loaded

Roost has the concept of targets. The default target is local:. You can use ssh: too. The target specifies what system will be provisioned. Here is an example:

roost # will provision the local system
roost 'ssh://username@host;privateKey=/path/to/private/key' # will provision a remote host over ssh

In case you are not sure what you are doing, you can also try dry-running by using the -d|--dry option. For example:

roost -d # will output information on what will happen if run the command for real

These are all options you need to know.

Basic roost.json File Structure

The following snippet describes the basic structure of the roost manifest file.

{
    "plugins": {
        "node-roost-nginx": true # true or false for loading extra plugins in the form of nodejs modules 
    },
    
    "packages": {
        "nodejs": "version|installed|purged" # excepted input is version, installed (for the latest version) or purged
    },
    
    "services": {
        "nginx": "running|stopped" # a service can be either running or stopped
    },
    
    "commands": {
        "command": true # a command will execute if true or not execute if false
    }
}

Apt can be configured with the following directive, although this is not standard at the moment:

{
    "apt": {
        "update": true # true or false for auto updating the system before installing extra packages
    }
}

Due to the nature of JSON documents you can use a mix of the values provided above although it is generally perceived as a bad thing so it should be avoid.

Order Of Execution

Roost does not expose means by which you can configure the order of execution of things. The order is already chosen for you in advance, which is:

  • plugins
  • packages
  • services
  • commands

This order is not finalised but this is what it is at the moment. The order of execution is pre-selected to avoid confusion and to provide some level of consistency. Based on the feedback that we get from the community we will tune this order or even expose means by which you can do dependency relationship management.

The Plugin System

The plugin system of roost is essentially the nodejs module system. You can load plugins by declaring them inside the roost manifest file as illustrated previously. The plugin must to be either installed globally via npm or locally inside the node_modules folder structure.

Each plugin must export a function called roost. The function expects two parameters: the manifest file and the target. Once the function is invoked the plugin will be able to traverse the manifest file for declarations it recognizes and execute actions via the target. A plugin may even augment the manifest structure if desired, i.e. a plugin my install more packages by simply extending the "packages" directive.

Two functions exist in the target that are useful to plugin developers: "exec" and "spawn". Use "exec" to launch any shell command. Use "spawn" to launch an executable with a fine-grain control over the process.

For examples and inspiration check out the project source code.

Embedding Into Other Projects

Roost can be easily embedded into other projects. Checkout bin/roost for inspiration. Just copy and paste the parts that you need. The whole project has been designed to be easily embedable so that it can leave as part of larger and more complex systems.

Project Status and Future Plans

The project is new and immature in many ways. We hope to change that in the upcoming months. At the moment only ubuntu/debian is supported so please fork it as much as you want and send us patches. We are keen to make something out of this.

Roost, although open source, is commercially backed by Websecurify. We are just starting to use it internally to manage our infrastructure. We are committed to support it in the foreseeable future so you can be assured that it is actually used to satisfy real needs.

How To Contribute

Fork the project. Improve it. Send us the patches. Write some plugins and spread the news. We are happy to help with any technical queries you may have.

We want to support the community to create all kinds of ready-made systems. Share your roost files for the world to see. Get in touch if you want them to be included as part of the default distribution.

Roost Plugins You Can Use

  • node-roost-nginx - install and configure nginx
  • node-roost-nodejs - install and configure nodejs
  • node-roost-mongo - install and configure mongo

The easiest way to install these plugins is to create a package.json file and declare the modules just as you usually do. Execute npm install inside the same folder than use roost to load the plugins that you need. It is as simple as that.