
This changes the puppet-lint requirement to 1.1.x, so that we can puppet-lint plugins. Most of these plugins are for 4.x compat, but just catch common errors. Change-Id: Ic7e3e5f2200c61760436d2c3b2f504e18248a15a
28 lines
682 B
Puppet
28 lines
682 B
Puppet
# This is an example of site.pp to deploy Tuskar
|
|
|
|
class { '::tuskar::client': }
|
|
|
|
class { '::tuskar::keystone::auth':
|
|
admin_address => '10.0.0.1',
|
|
internal_address => '10.0.0.1',
|
|
public_address => '10.0.0.1',
|
|
password => 'verysecrete',
|
|
region => 'OpenStack'
|
|
}
|
|
|
|
class { '::tuskar::db::mysql':
|
|
password => 'dbpass',
|
|
host => '10.0.0.1',
|
|
allowed_hosts => '10.0.0.1'
|
|
}
|
|
|
|
class { '::tuskar':
|
|
database_connection => 'mysql://tuskar:secrete@10.0.0.1/tuskar?charset=utf8',
|
|
}
|
|
|
|
class { '::tuskar::api':
|
|
bind_host => '10.0.0.1',
|
|
identity_uri => 'https://identity.openstack.org:35357',
|
|
keystone_password => 'verysecrete'
|
|
}
|