
* Fix following warnings: * case statement without a default case * double quoted string containing no variables * indentation of => is not properly aligned * mode should be represented as a 4 digit octal value or symbolic mode * quoted boolean value found * unquoted file mode * variable not enclosed in {} * Fix following errors: * trailing whitespace found * two-space soft tabs not used * Remove quotes around class in include/require statements Change-Id: Ia407416e51c09fb303675863afa68f526a37abcf
17 lines
587 B
Puppet
17 lines
587 B
Puppet
class { 'openstack::controller':
|
|
public_address => $::ipaddress_eth0,
|
|
mysql_root_password => 'password',
|
|
allowed_hosts => ['127.0.0.%', '192.168.1.%'],
|
|
rabbit_password => 'password',
|
|
keystone_db_password => 'password',
|
|
keystone_admin_token => '12345',
|
|
admin_email => 'root@localhost',
|
|
admin_password => 'password',
|
|
nova_db_password => 'password',
|
|
nova_user_password => 'password',
|
|
glance_db_password => 'password',
|
|
glance_user_password => 'password',
|
|
secret_key => '12345',
|
|
exported_resources => false,
|
|
}
|