cb77bc295f
This adds defined anchor points for external modules to hook into the software install, config and service dependency chain. This allows external modules to manage software installation (virtualenv, containers, etc) and service management (pacemaker) without needing rely on resources that may change or be renamed. Change-Id: I0b524e354b095f2642fd38a2f88536d15bcdf855
18 lines
292 B
Puppet
18 lines
292 B
Puppet
# Creates floating networks
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*network*]
|
|
# (mandatory) The network name to work on
|
|
#
|
|
define nova::manage::floating ( $network ) {
|
|
|
|
include ::nova::deps
|
|
|
|
nova_floating { $name:
|
|
ensure => present,
|
|
network => $network,
|
|
provider => 'nova_manage',
|
|
}
|
|
}
|