Puppet Class: openstack::profile::neutron::server

Defined in:
manifests/profile/neutron/server.pp

Overview

The profile to set up the neutron server



2
3
4
5
6
7
8
9
10
11
# File 'manifests/profile/neutron/server.pp', line 2

class openstack::profile::neutron::server {
  openstack::resources::controller { 'neutron': }
  openstack::resources::database { 'neutron': } 
  openstack::resources::firewall { 'Neutron API': port => '9696', }

  include ::openstack::common::neutron
  include ::openstack::common::ovs

  Class['::neutron::db::mysql'] -> Exec['neutron-db-sync']
}