summaryrefslogtreecommitdiffstats
path: root/puppet/opnfv/manifests/network.pp
diff options
context:
space:
mode:
authorJonas Bjurel <jonas.bjurel@ericsson.com>2015-10-03 16:54:43 +0200
committerJonas Bjurel <jonas.bjurel@ericsson.com>2015-10-03 16:54:43 +0200
commit11dbe27afb96c5b54b9f4f0a1c8b21194f59dc7b (patch)
tree1ee6814c36c7af010cff9d67a1cf1643b233a378 /puppet/opnfv/manifests/network.pp
parent0d4a1f4143d71fc616f456a3708d5c8c2a24ec3f (diff)
Moving tag arno.2015.1.0 from genesis to fuel/stable/arnoarno.2015.1.0
Change-Id: I8bb3e28a814e04ad15e8a4b24b40bd7685600f46 Signed-off-by: Jonas Bjurel <jonas.bjurel@ericsson.com>
Diffstat (limited to 'puppet/opnfv/manifests/network.pp')
-rw-r--r--puppet/opnfv/manifests/network.pp50
1 files changed, 50 insertions, 0 deletions
diff --git a/puppet/opnfv/manifests/network.pp b/puppet/opnfv/manifests/network.pp
new file mode 100644
index 000000000..37cc75eaf
--- /dev/null
+++ b/puppet/opnfv/manifests/network.pp
@@ -0,0 +1,50 @@
+class opnfv::network {
+
+ if $private_ip == '' { fail('private_ip is empty') }
+ if $mysql_ip == '' { fail('mysql_ip is empty') }
+ if $amqp_ip == '' { fail('amqp_ip is empty') }
+ if $opendaylight_ip == '' { fail('opendaylight_ip is empty') }
+
+
+ if $nova_user_password == '' { fail('nova_user_password is empty') }
+ if $nova_db_password == '' { fail('nova_db_password is empty') }
+
+ if $neutron_user_password == '' { fail('neutron_user_password is empty') }
+ if $neutron_db_password == '' { fail('neutron_db_password is empty') }
+ if $neutron_metadata_shared_secret == '' { fail('neutron_metadata_shared_secret is empty') }
+
+ class { "opendaylight":
+ features => ['odl-base-all','odl-aaa-authn','odl-restconf',
+ 'odl-nsf-all','odl-adsal-northbound','odl-mdsal-apidocs',
+ 'odl-ovsdb-openstack','odl-ovsdb-northbound','odl-dlux-core'],
+ }
+
+
+ class { "quickstack::neutron::networker":
+ require => Class['opendaylight'],
+ neutron_metadata_proxy_secret => $neutron_metadata_shared_secret,
+ neutron_db_password => $neutron_db_password,
+ neutron_user_password => $neutron_user_password,
+ nova_db_password => $nova_db_password,
+ nova_user_password => $nova_user_password,
+
+ controller_priv_host => $private_ip,
+
+ agent_type => 'ovs',
+ enable_tunneling => true,
+ ovs_tunnel_iface => 'em1',
+ ovs_tunnel_network => '',
+ ovs_l2_population => 'True',
+ ovs_tunnel_types => ['vxlan'],
+ external_network_bridge => 'br-ex',
+ tenant_network_type => 'vxlan',
+ tunnel_id_ranges => '1:1000',
+ ml2_mechanism_drivers => ['opendaylight'],
+ odl_controller_ip => $opendaylight_ip,
+
+ mysql_host => $mysql_ip,
+ amqp_host => $amqp_ip,
+ amqp_username => 'guest',
+ amqp_password => 'guest',
+ }
+}