2013-04-25 17:34:45 +04:00

2.0 KiB

Welcome to Conductor, the Murano orchestration engine!

Conductor is an Murano orchestration engine that transforms object model sent by REST API service into a series of Heat and Murano-Agent commands

This document describes Conductor for contributors of the project.

This documentation is generated by the Sphinx toolkit and lives in the source tree.

Installation Guide

Install

  1. Check out sources to some directory (<home>/murano):

    user@work:~/git clone https://github.com/Mirantis/murano-conductor.git
  2. Install Conductor:

    user@work:~/cd murano/conductor && sudo python setup.py install

Configure

  1. Open configuration file for editing:

    user@work:~/cd murano/conductor/etc && nano conductor.conf
  2. Configure according to you environment:

    [DEFAULT]
    log_file = logs/conductor.log
    debug=True
    verbose=True
    
    [heat]
    auth_url = http://localhost:5000/v2.0
    
    [rabbitmq]
    # this must be IP or hostname accessible from instances (VMs)
    host = YOUR.REAL.IP.HERE
    port = 5672
    virtual_host = murano
    login = murano
    password = murano

Run

Run Conductor and supply valid configuration file:

user@work:~/cd murano/conductor && conductor --config-file=./murano/conductor/etc/conductor.conf