Created
July 15, 2012 22:41
-
-
Save dizz/3118975 to your computer and use it in GitHub Desktop.
contains definitions for an all-in-one openstack installation
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::all_in_one { | |
$admin_password = 'admin_pass' | |
$keystone_admin_token = 'keystone_pass' | |
class { 'openstack::all': | |
public_address => $ipaddress_eth0, | |
public_interface => 'eth0', | |
private_interface => 'eth1', | |
admin_email => '[email protected]', | |
admin_password => $admin_password, | |
keystone_db_password => 'keystone_pass', | |
keystone_admin_token => $keystone_admin_token, | |
nova_db_password => 'nova_pass', | |
nova_user_password => 'nova_pass', | |
glance_db_password => 'glance_pass', | |
glance_user_password => 'glance_pass', | |
rabbit_password => 'rabbit_pass', | |
rabbit_user => 'rabbit_user', | |
libvirt_type => 'qemu', | |
fixed_range => '10.0.0.0/24', | |
floating_range => '192.168.56.128/25', | |
verbose => true, | |
auto_assign_floating_ip => false, | |
} | |
class { 'openstack::auth_file': | |
admin_password => $admin_password, | |
keystone_admin_token => $keystone_admin_token, | |
controller_node => '127.0.0.1', | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment