Files
puppet-heat/examples/site.pp
Takashi Kajinami f50440a871 Prepare for voxpupuli-puppet-lint-plugins
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>
2025-08-19 22:54:58 +09:00

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': }
}