File: neutron_network.pp

package info (click to toggle)
puppet-module-manila 27.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,852 kB
  • sloc: ruby: 5,060; python: 33; makefile: 10; sh: 10
file content (34 lines) | stat: -rw-r--r-- 1,193 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# == define: manila::network::neutron_network
#
# Setup and configure the Neutron network plugin
#
# === Parameters
#
# [*neutron_physical_net_name*]
#  (required) The name of the physical network to determine which net segment
#  is used.
#
# [*network_plugin_ipv4_enabled*]
#  (optional) Whether to support Ipv4 network resource.
#  Defaults to $facts['os_service_default'].
#
# [*network_plugin_ipv6_enabled*]
#  (optional) whether to support IPv6 network resource.
#  Defaults to $facts['os_service_default'].
#
define manila::network::neutron_network (
  $neutron_physical_net_name,
  $network_plugin_ipv4_enabled = $facts['os_service_default'],
  $network_plugin_ipv6_enabled = $facts['os_service_default'],
) {
  include manila::deps

  $neutron_single_plugin_name = 'manila.network.neutron.neutron_network_plugin.NeutronNetworkPlugin'

  manila_config {
    "${name}/network_api_class":           value => $neutron_single_plugin_name;
    "${name}/neutron_physical_net_name":   value => $neutron_physical_net_name;
    "${name}/network_plugin_ipv4_enabled": value => $network_plugin_ipv4_enabled;
    "${name}/network_plugin_ipv6_enabled": value => $network_plugin_ipv6_enabled;
  }
}