Skip to content
Snippets Groups Projects
Commit 7cc17d89 authored by Quentin MACHU's avatar Quentin MACHU
Browse files

Added default flotting pool parameter in Nova Compute

parent 39952d67
No related branches found
No related tags found
No related merge requests found
......@@ -107,6 +107,7 @@ ceph::keys::args:
cap_osd: allow class-read object_prefix rbd_children, allow rwx pool=images
# Nova
iaas::profile::nova::common::default_flotting_pool: ext-net
iaas::profile::nova::controller::password: nova
# Neutron
......
class iaas::profile::nova::common (
$public_interface = hiera('iaas::public_interface', undef),
$default_flotting_pool = undef,
$neutron_password = hiera('iaas::profile::neutron::password', undef),
$nova_password = hiera('iaas::profile::nova::controller::password', undef),
......@@ -31,5 +32,5 @@ class iaas::profile::nova::common (
vif_plugging_timeout => '0',
}
nova_config { 'DEFAULT/default_floating_pool': value => 'public' }
nova_config { 'DEFAULT/default_floating_pool': value => $default_flotting_pool }
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment