Created
July 15, 2012 22:39
-
-
Save dizz/3118970 to your computer and use it in GitHub Desktop.
contains the _basic_ common configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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