puppet-neutron/examples/base_provision.pp
Clayton O'Neill 25a5ede55b Add Puppet 4.x lint checks
This changes the puppet-lint requirement to 1.1.x, so that we can use
puppet-lint plugins.  Most of these plugins are for 4.x compat, but some
just catch common errors.

Change-Id: I44cb4ffbbc8ccd9f310240a4b1eb6fdfdb435831
2015-02-17 09:01:36 -05:00

55 lines
1.3 KiB
Puppet

#
# This manifest is intended to demonstrate how to provision the
# resources necessary to boot a vm with network connectivity provided
# by neutron.
#
# Note that a neutron_router resource must declare a dependency on the
# first subnet of the gateway network. Other dependencies for the
# resources used in this example can be automatically determined.
#
keystone_tenant { 'admin':
ensure => present,
}
neutron_network { 'public':
ensure => present,
router_external => 'True',
tenant_name => 'admin',
}
neutron_subnet { 'public_subnet':
ensure => 'present',
cidr => '172.24.4.224/28',
network_name => 'public',
tenant_name => 'admin',
}
keystone_tenant { 'demo':
ensure => present,
}
neutron_network { 'private':
ensure => present,
tenant_name => 'demo',
}
neutron_subnet { 'private_subnet':
ensure => present,
cidr => '10.0.0.0/24',
network_name => 'private',
tenant_name => 'demo',
}
# Tenant-private router - assumes network namespace isolation
neutron_router { 'demo_router':
ensure => present,
tenant_name => 'demo',
gateway_network_name => 'public',
require => Neutron_subnet['public_subnet'],
}
neutron_router_interface { 'demo_router:private_subnet':
ensure => present,
}