Skip to content

Instantly share code, notes, and snippets.

@dizz
Created July 15, 2012 22:39
Show Gist options
  • Save dizz/3118970 to your computer and use it in GitHub Desktop.
Save dizz/3118970 to your computer and use it in GitHub Desktop.
contains the _basic_ common configuration
class icclab::params{
/* -----------Shared Connection Settings-------------*/
########### Important to set! ############
$controller_node_address = '192.168.56.3'
$controller_node_public = controller_node_address
$controller_node_internal = controller_node_address
$sql_connection = "mysql://nova:${icclab::params::nova_db_password}@${controller_node_internal}/nova"
/* --------------------------------------------------*/
/* -------------Shared Auth Settings-----------------*/
$nova_user_password = 'nova_pass'
$rabbit_password = 'rabbit_pass'
$rabbit_user = 'rabbit_user'
/* --------------------------------------------------*/
/* ----------Shared Networking Settings--------------*/
$network_manager = 'nova.network.manager.FlatDHCPManager'
$fixed_range = '10.0.0.0/24'
$public_interface = 'eth0'
$private_interface = 'eth1'
/* --------------------------------------------------*/
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment