Puppet Class: neutron::plugins::ml2::midonet

Defined in:
manifests/plugins/ml2/midonet.pp

Overview

Class: neutron::plugins::ml2::midonet

Configure the Mech Driver for midonet neutron plugin

Parameters:

midonet_uri

(required) MidoNet API server URI. Usually of the form ‘http://<midonet-api-hostname>:8080/midonet-api’

username

(required) MidoNet admin username.

password

(required) MidoNet admin password.

project_id

(optional) Name of the project that MidoNet admin user belongs to. Defaults to ‘services’

Parameters:

  • midonet_uri (Any)
  • username (Any)
  • password (Any)
  • project_id (Any) (defaults to: 'services')


21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'manifests/plugins/ml2/midonet.pp', line 21

class neutron::plugins::ml2::midonet (
  $midonet_uri,
  $username,
  $password,
  $project_id = 'services',
) {

  include neutron::deps

  neutron_plugin_ml2 {
    'MIDONET/midonet_uri' : value => $midonet_uri;
    'MIDONET/username'    : value => $username;
    'MIDONET/password'    : value => $password, secret => true;
    'MIDONET/project_id'  : value => $project_id;
  }

}