Forge Home

synergy

Set up Synergy on an existing OpenStack instance

8,344 downloads

6,412 latest version

1.8 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.4.0 (latest)
  • 0.3.1
  • 0.3.0
  • 0.2.0
  • 0.1.0
released Sep 13th 2016

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'vll-synergy', '0.4.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add vll-synergy
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install vll-synergy --version 0.4.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

vll/synergy — version 0.4.0 Sep 13th 2016

Synergy

Table of Contents

  1. Overview
  2. Module Description - What the module does and why it is useful
  3. Setup - The basics of getting started with synergy
  4. Usage - Configuration options and additional functionality
  5. Reference - An under-the-hood peek at what the module is doing and how
  6. Limitations - OS compatibility, etc.
  7. Development - Guide for contributing to the module

Overview

Set up and manage Synergy on an existing OpenStack instance.

Module Description

Users that already have an OpenStack instance can use this module to install and configure the two main Synergy components:

This module will download the latest version of Synergy and install it. One can manage Synergy configuration directly through this module.

Setup

What synergy affects

  • Synergy configuration file at /etc/synergy/synergy.conf
  • packages synergy-service (rpm or deb depending on the platform) and synergy-scheduler-manager (via pip)

Setup Requirements

An OpenStack instance (with the version specified in Limitations).

The Puppet module puppetlabs/apt if you plan to install on Ubuntu.

An OpenStack package repository for fetching python-oslo* libraries:

  • on Ubuntu, use the OpenStack/CloudArchive repository.
  • on CentOS, the CentOS Cloud SIG repository will be installed during the Puppet run through the centos-openstack-release-{openstackversion} package.

Beginning with synergy

Make sure this module is discoverable by your Puppet instance.

Declare the synergy class (see Usage).

Usage

class { 'synergy':
  synergy_db_url          => 'mysql://test:test@localhost',
  dynamic_quotas          => {'project_A' => 1,  'project_B' => 2},
  project_shares          => {'project_A' => 70, 'project_B' => 30 },
  user_shares             => {'project_A' => {'user1' => 60, 'user2' => 40 },
                              'project_B' => {'user3' => 80, 'user4' => 20}},
  keystone_url            => 'https://example.com',
  keystone_admin_user     => 'admin',
  keystone_admin_password => 'the admin password',
}

Reference

Class: synergy

Parameters

  • synergy_db_url (required): the Synergy database, must be compliant to the SQLAlchemy database URL schema.
  • synergy_log_file (default: /var/log/synergy/synergy.log): a file to log to.
  • synergy_log_level (default: INFO): log all information including and above this level, choices: INFO, WARNING, ERROR.
  • synergy_service_host (default: localhost): synergy host.
  • synergy_service_port (default: 8051): synergy port.
  • synergy_project_shares (required): a puppet hash describing the project shares (see Usage for an example).
  • keystone_url (required): Keystone URL.
  • keystone_admin_user (required): Keystone admin user.
  • keystone_admin_password (required): Keystone admin password.
  • nova_url (required): Nova URL
  • nova_db_url (required): Nova database URL, in SQLAlchemy format.
  • amqp_backend (default: rabbit): AMQP backend.
  • amqp_host (required): AMQP host.
  • amqp_port (default: 5672): AMQP port.
  • amqp_user (default: openstack): AMQP user.
  • amqp_password (required): AMQP password.
  • amqp_virtual_host (default: /): AMQP virtual host.

Limitations

Operating System

  • CentOS 7
  • Ubuntu 14.04

OpenStack version

  • Liberty

Development

Feel free to submit pull requests on the project github page.