
Fix new lint errors detected when full of the voxpupili lint plugins are enabled. Change-Id: I9705ad334d05a2041f0f9c4b885fc3fd44342720 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
59 lines
1.3 KiB
Puppet
59 lines
1.3 KiB
Puppet
# == Class: designate::db::mysql
|
|
#
|
|
# Class that configures mysql for designate
|
|
#
|
|
# === Parameters:
|
|
#
|
|
# [*password*]
|
|
# (Required) Password to use for the designate user
|
|
#
|
|
# [*dbname*]
|
|
# (Optional) The name of the database
|
|
# Defaults to 'designate'
|
|
#
|
|
# [*user*]
|
|
# (Optional) The mysql user to create
|
|
# Defaults to 'designate'
|
|
#
|
|
# [*host*]
|
|
# (Optional) The IP address of the mysql server
|
|
# Defaults to '127.0.0.1'
|
|
#
|
|
# [*charset*]
|
|
# (Optional) The charset to use for the designate database
|
|
# Defaults to 'utf8'
|
|
#
|
|
# [*collate*]
|
|
# (Optional) The collate to use for the designate database
|
|
# Defaults to 'utf8_general_ci'
|
|
#
|
|
# [*allowed_hosts*]
|
|
# (Optional) Additional hosts that are allowed to access this DB
|
|
# Defaults to undef
|
|
#
|
|
class designate::db::mysql (
|
|
$password,
|
|
$dbname = 'designate',
|
|
$user = 'designate',
|
|
$host = '127.0.0.1',
|
|
$charset = 'utf8',
|
|
$collate = 'utf8_general_ci',
|
|
$allowed_hosts = undef,
|
|
) {
|
|
include designate::deps
|
|
|
|
openstacklib::db::mysql { 'designate':
|
|
user => $user,
|
|
password => $password,
|
|
dbname => $dbname,
|
|
host => $host,
|
|
charset => $charset,
|
|
collate => $collate,
|
|
allowed_hosts => $allowed_hosts,
|
|
}
|
|
|
|
Anchor['designate::db::begin']
|
|
~> Class['designate::db::mysql']
|
|
~> Anchor['designate::db::end']
|
|
}
|