Fix new lint errors detected when full of the voxpupili lint plugins are enabled. Change-Id: I8c4962bc681c6666897e9725ddfd24893d5d7f4d Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
29 lines
541 B
Puppet
29 lines
541 B
Puppet
node default {
|
|
# First, install a mysql server
|
|
class { 'mysql::server': }
|
|
|
|
# And create the database
|
|
class { 'heat::db::mysql':
|
|
password => 'heat',
|
|
}
|
|
|
|
class { 'heat::keystone::authtoken':
|
|
password => 'password',
|
|
}
|
|
class { 'heat::db':
|
|
database_connection => 'mysql+pymysql://heat:heat@localhost/heat',
|
|
}
|
|
|
|
# Common class
|
|
class { 'heat':
|
|
}
|
|
|
|
# Install heat-engine
|
|
class { 'heat::engine':
|
|
auth_encryption_key => 'whatever-key-you-like',
|
|
}
|
|
|
|
# Install the heat-api service
|
|
class { 'heat::api': }
|
|
}
|