VOLTTRON Deployment Recipes

“main branch” Begining with version 7.1, VOLTTRON introduces the concept of recipes. This system leverages ansible to orchestrate the deployment and configuration process for VOLTTRON. These recipes can be used for any deployment, but are especially useful for larger scale or distributed systems, where it is necessary to manage many platforms in an organized way. Some of the key features are:

  1. Organize recipes in roles and playbooks so that they can both be used as is, or as components for customized playbooks specific to a particular use case.

  2. Abstract the host-system differences so that the installation process is consistent across supported architectures and operating systems.

  3. Leverage ansible’s inventory system so that the marginal burden of managing additional deployments is low, and confidence of uniformity among those deployments is high.

Getting started with recipes

The recipes system is designed to be executed from a user workstation or other server with ssh access to the hosts which will be running the VOLTTRON platforms being configured. In order to do so, you require a python environment with ansible installed. You can do this using pip in whatever environment you like; it is included as an optional feature when bootstrapping the VOLTTRON environment, to do that use the Bootstrap-Options and include the --deployment flag.

As described in the next section, the recipes themselves can all be found in the $VOLTTRON_ROOT/deployment/recipes directory. Additionally, to use the recipes you will need to create a set of recipe configuration files (discussed in more detail in the recipes-configuration section). These include:

host inventory file

A file which uses a valid ansible inventory (official docs) to configure the details of each remote server to be managed. This file contains details of how the recipe deploys the system, including paths to where files are to be found on the user’s system and where files should be created and stored on the managed systems.

platform configuration file

A file for each remote VOLTTRON platform containing the runtime configuration details for the platform itself. This file is used to generate the platform’s configuration file and to define the agents to be installed in the remote platform (remote agent management is not yet supported, see Feature planning).

Note

Examples of these files can be found in the $VOLTTRON_ROOT/examples/deployment directory.

When working with recipes, a user will generally use the ansible-playbook command (see the full official documentation). This command is used to execute a playbook, which applies a set of ansible “roles” and “tasks” to remote systems based on their respective definitions and the user provided inventory. In the recipe-example section there are several working examples, which demonstrate common flags such as -i for specifying the inventory file, or -K when administrative privileges are required. The official docs provide details for more advanced options, such as using -l to apply a playbook to only a subset of the inventory, or other flags for executing only part of a playbook.

Available recipes

All provided recipes are ansible playbooks and can be executed directly using the the ansible-playook command line tool. Each of the available playbooks are discussed in the following subsections, they can all be found in the $VOLTTRON_ROOT/deployment/recipes directory.

Ensure host key entries

The ensure-host-keys.yml playbook provides a recipe which updates your local user’s known_hosts file with the remote host keys for each remote listed in your inventory file. This is most commonly useful in cases where VOLTTRON is being deployed to virtual machines which are being provisioned automatically and therefore may have chaning host keys and automatically included ssh keys. It makes changes in your user’s local ~/.ssh/known_hosts file. This playbook has no VOLTTRON-specific content but is provided as a convenience.

Host configuration

The host-config.yml playbook conducts system-level package installation and configuration changes required for installing and running VOLTTRON. The playbook uses the inventory and associated host configuration files to determine which optional dependencies are are required for the particular deployment (for example, dependencies for rabbitMQ when using that message bus). The playbook also allows the user to specify extra system-level dependencies to be included, this can be used as a convenience, to avoid needing to write an additional playbook for installing packages, or to cover the case where custom agents may have additional requirements that the recipes is otherwise unaware of.

Note that because this playbook installs system packages, it must be passed a sudo password when run (this is done with the standard ansible system and so the features provided by apply).

Install platform

The install-platform.yml playbook installs the VOLTTRON source in the configured location, creates the virtual environment with both dependencies and VOLTTRON installed, and configures the platform itself. The recipe detects optional dependencies required by the platform (for example, support for rabbitMQ message bus or web support), as well asl supporting extra bootstrap options and PyPI packages to be included. It also creates an activation script which will set VOLTTRON-related environmental variables as well as activating the virtual environment, making it easy to interact with the platfor locally if required.

Run platform

The run-platform.yml playbook ensures that the remote VOLTTRON platform instances are in the desired running state. The default state is “running”, but this is configurable in the inventory (and since variables can be set from the CLI, both starting and stopping are achievable without changing the playbook or inventory).

Recipe examples

In this section we will go through the process of creating recipe configuration and inventory from scratch and then executing the available recipes. We also show some useful patterns for how you one might leverage the system in case-specific ways going forward (note the summary of upcoming features in the Feature planning section).

In this example we will use the VOLTTRON recipes system to prepare multiple virtual machines and to install the VOLTTRON libraries, configure a platform, and start the platform on each machine. We will use the opportunity to demonstrate a few different inventory configuration patterns enabled by ansible, as well as demonstrating how custom interactions.

Step 0: Provision the VMs

Before you can run anthing on a remote machine, you’ll need to have the machine running and have access to it. This could be physical or virtual machines; in this example we just need three available systems. One option for doing this is with vagrant; if you follow their documentation to install vagrant and virtualbox as your hypervisor, then you can use the the Vagrantfile included with the VOLTTRON source ($VOLTTRON_ROOT/examples/deployment/Vagrantfile). To start the VMs you run vagrant up. You may then use vagrant ssh-config >> ~/.ssh/config to add store the ssh access configuration for the VMs for your user. All of the input/configuration files used here can be found in the examples/deployment subdirectory of the VOLTTRON repository.

Note

  1. The above instructions assume you are working on a MacOS or native linux system, for Windows users you shoudl reference the configuration documentation for your ssh client.

  2. The above command appends to your ssh config, but ssh uses the first relevant configuration it finds. You may need to remove the generated configuration entries before attempting to update them.

Also note that you can configure the (local) behavior of the ansible CLI tools in an ansible.cfg file. The search path for those is documented by ansible and includes your home directory and the working directory. In order to use python3 whenever possible it is useful to set the interpreter setting to auto as shown in the included file:

ansible.cfg
1
2
[defaults]
interpreter_python = auto

Step 1: Prepare configuration files

VOLTTRON’s recipes require there to be two levels of configuration. The ansible inventory is used to configure the behavior of the roles and playbooks which constitute the recipe, and the platform configurations contain more detailed configuration details of each platform and its components. The actual tasks executed consider both sources so that for any particular configuration choice there should only need to be a single source of truth. We construct each in the following subsections.

The inventory configuration structure available from ansible is quite sophisticated and anything described in the ansible inventory documentation is available for use with recipes. For this example we start with a truely minimal configuration, which consists only of the list of our three machines (where we’ve made the conventional choice that the inventory host names will match the VM names in the generated ssh configuration.

recipe-inventory.minimal.yml
1
2
3
4
5
6
7
8
9
---
all:
  hosts:
    web:
      ansible_host: web
    collector1:
      ansible_host: collector1
    collector2:
      ansible_host: collector2

The minimal platform configuration file is a yaml file with a config key equal to an empty dictionary. The default location is a file named the same as the inventory host name with extension .yml, in a directory next to the inventory file with name also matching the inventory host name. (This location is configurable via inventory variables). In this case the instance name is taken to be the inventory host name and all other configs are left blank. That configuration looks like:

web/web.yml
1
2
---
config: {}

By way of a demonstration, we’ll expand the minimal inventory to achieve the following:

  • set the volttron_home to be ~/volttron_home on each systems by using a group variable (line 15)

  • override the above to be ~/vhome on only the web host by using a host variable (line 6)

  • configure collector1 to use the local VOLTTRON source tree rather than downloading from github (line 9)

  • install the “drivers” optional feature when bootstrapping the volttron virtualenvironment on collector1 (lines 10-11)

These are all achived with an inventory that looks like:

recipe-inventory.yml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
---
all:
  hosts:
    web:
      ansible_host: web
      volttron_home: "~/vhome"
      volttron_use_local_source: yes
    collector1:
      ansible_host: collector1
      volttron_use_local_source: yes
      volttron_features:
      - drivers
      #extra_requirements:
      #- ipython
      #- jwt #TODO seems like this may need to be a core dependency?
    collector2:
      ansible_host: collector2
  vars:
    volttron_home: "~/volttron_home"

You could expand the inventory to assign values to any of the variables documented in the recipes-configuration section. These can be applied to specifc hosts, or to groups per the ansible inventory system.

Similarly, we can modify the platform configuration by updating the platform configuration file. For example, we’ll set collector1 to use the RabbitMQ message bus by replacing the empty dictionary with that configuration as seen here:

collector1/collector1.yml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
config: {}
  #message-bus: rmq

#TODO this isn't used yet
agents:
  listener:
    agent_state: present
    agent_source: '$VOLTTRON_ROOT/examples/ListenerAgent'
    agent_running: True
    agent_enabled: True
    agent_tag: listen
    agent_config_store:
    - path: listener_store
      name: ""
      absolute_path: False
      present: True
    - path: "asdf"
      name: "foo.json"
      present: False
    - path: top_store.json
      name: pnnl/richland/isb/magaix.json

  historian.sqlite:
    agent_source: '$VOLTTRON_ROOT/services/core/SQLHistorian'
    agent_config: 'config.sqlite'
    agent_running: True
    agent_enabled: True

Step 2: Configured the systems

With the configuration files written, we can start running some actual recipes. The first needed is host-config. Since this needs admin access on the remote systems, we add the -K flag, so the execution command looks like:

ansible-playbook -K \
                 -i <path/to/your/inventory>.yml \
                 <path/to/>volttron/deployment/recipes/host-config.yml

Take note of the output while running, each step reports on the action taken on every remote, which may differ based on configuration choices made in the prior step.

Step 3: Install the platform

Having configured the system in the last step, we now are able to install and configure the VOLTTRON platform. Because this is a user-space process, the -K flag is not used. This command looks like:

ansible-playbook -i <path/to/your/inventory>.yml \
                 <path/to/>volttron/deployment/recipes/install-platform.yml

Again, if you review the console output your will see that platform configuration differences are reflected.

Having completed this step, many components have been added to the user’s home directory on the remote systems (or whatever alternate location configured in the inventory file). If you ssh to those systems you can inspect those directories and files which have been created. In the example, the web node will have the following extra content in the user’s home directory:

.
├── activate-web-env/
├── ansible_venv/
├── vhome/
├── volttron/
├── volttron-source.tar.gz
└── volttron.venv/

Step 4: Start the platform

Starting the platform follows the same pattern as the prior two steps, the command is:

ansible-playbook -i <path/to/your/inventory>.yml \
                 <path/to/>volttron/deployment/recipes/run-platforms.yml

This particular playbook simply starts the platform (assuming it is not already running).

If you connect to one of the remote systems, you can source the activation script created during the platform installation step. This activates the VOLTTRON environment as well as setting appropriate environment variables. If you run vctl, you’ll see that the platform is running (but currently has no agents installed).

Extra steps

Having started the platform, you can leverage ansible’s ad-hoc commands to interact with them. For example,:

ansible -i <path/to/your/inventory>.yml \
        -m shell \
        -a "volttron/env/bin/vctl status"

will attempt to run the vctl status command on each remote (assuming they are all using the default VOLTTRON_ROOT location. Similarly, you can override default inventory values from the CLI. If you’d like to shutdown the remote platforms you could either set the platform_status variable to "stopped" in the inventory, or do it on the fly with:

ansible-playbook -i <path/to/your/inventory>.yml \
                 <path/to/>volttron/deployment/recipes/install-platform.yml \
                 -e platform_status=stopped

You can also make use of the -l flag to limit either of the above to either a specific host or group from the inventory. You’d simply pass the name of the host or group from the inventory as the argument to that flag.

Feature planning

The ansible-based recipes feature set has been long requested, but has some challenges when seeking to combine existing VOLTTRON usage patterns and complex state with the normal patterns in ansible (especially idempotence). This initial feature set is admittedly not very expansive, but is intended to be a starting point and an opportunity to see what usage patterns are most desired. Feedback in that regard is greatly appreciated. Our current planning includes the following priorities:

  • Support for a multi-platform system with vc connections, specifically creating/authorizing that connection

  • Support for working with agents in the installed platforms, eventually to include:

    • installing/uninstalling agents

    • updating configuration of an installed agent

    • starting or stopping an installed agent

Recipes configuration

Configuration is available in two layers. The ansible inventory is used to configure variables which impact inventory behavior. These are used to override default fact values in the set-defaults role, which is included in all playbooks. This single role is used to assign fact values to all variables which are used in any of the included roles and playbooks. The deployment configuration directory contains the platform configurations for the deployed VOLTTRON instances (and is used by the various ansible plays to achieve that configuration). Where relevant, play configurations are taken from the platform configuration to ensure that there is a single source of truth.

Available inventory configuration

Building ansible inventory can be an expansive topic and is beyond the scope of this documentation, the official documentation on building inventory is a great resource for complete and current details. In addition to ansible’s standard variables and facts, the following configurations are used by VOLTTRON’s recipes:

verbose_debug_tasks

[boolean] default: False

enable verbose ansible debug tasks

extra_system_packages

[list of package names] default []

extra system-level pacakges to install via package manager

venv_for_ansible

[path] default $HOME/ansible_venv

where we will create a venv on the managed node where dependencies of ansible and our ansible modules get installed. This includes both custom VOLTTRON modules, as well as dependencies of ansible’s modules

volttron_use_local_source

[boolean] default: False

if true then copy the volttron source tree where this playbook is located, rather than a github clone

volttron_git_organization

[string] default volttron

The github organization portion of the source url used to retrieve the VOLTTRON source. The full url is of the form https://github.com/{{ volttron_git_organization }}/{{ volttron_git_repo }}/archive/{{ volttron_git_branch }}.tar.gz

volttron_git_repo

[string] default: volttron

The repo portion of the source url used to retrieve the VOLTTRON source. The full url is of the form https://github.com/{{ volttron_git_organization }}/{{ volttron_git_repo }}/archive/{{ volttron_git_branch }}.tar.gz

volttron_git_branch

[string] default: main

The branch portion of the source url used to retrieve the VOLTTRON source. The full url is of the form https://github.com/{{ volttron_git_organization }}/{{ volttron_git_repo }}/archive/{{ volttron_git_branch }}.tar.gz

volttron_home

[string - path] default: $HOME/.volttron

path to the VOLTTRON home where all platform runtime files are stored

volttron_root

[string - path] default: $HOME/volttron

path to the volttron root directory where VOLTTRON source is placed

volttron_venv

[string - path] default: $HOME/volttron.venv

path to the python virtual environment into which the VOLTTRON package will be installed

host_configs_dir

[string - path] default: $HOME/configs

Path on the managed host where agent-related configuration files are placed

volttron_features

[list of strings] default: []

List of available feature sets to include when bootstrapping the remote volttron platform. Any valid double-dash flags to the bootstrap.py script may be listed here (without the double dash flag marking).

extra_requirements

[list of strings] default: []

A list of extra python packages to install into the VOLTTRON virtual environment

http_proxy

[string] default: ''

Configurable http proxy passed to pip when installing extra packages

erlang_package_version

[string] default: (the default is system dependent)

If using the RMQ bus, this sets the version of erlang packages to install

deployment_config_root

[string - path] default: inventory_dir

Absolute path (on the control system) to the directory containing remote platform configurations This is the source which is used when setting up the remotes.

deployment_host_config_dir

[string - path] default: ${deployment_config_root}/inventory_hostname

Absolute path (on the control system) to the directory containing the configuration for the specific remote host

deployment_platform_config_dir

[string - path] default: ${deployment_host_config_dir}/configs

absolute path (on the control system) to the agent configurations directory for the specific remote host

deployment_platform_config_file

[string - path] default: ${deployment_host_config_dir}/${inventory_hostname}.yml

absolute path (on the control system) to the platform configuration file for this node

Available platform configuration

For every platform, it is required that there be a configuration file at the path configured in the inventory. This file supports two top-level keys: The config key has content which is used to directly populate the platform config (in $VOLTTRON_HOME/config). It is also parsed by various recipe components to determine which message bus is in use and to detect if some optional features (such as web) are in use. The agents config is currently not used, but will contain details of agents to be installed into the platform. The supported format(s) of this field are still being finalized.

Indices and tables