puppet-magnum/manifests/db/postgresql.pp
ZhongShengping c5544a5a66 Add hooks for external install & svc management
This adds defined anchor points for external modules to hook into the
software install, config and service dependency chain.  This allows
external modules to manage software installation (virtualenv,
containers, etc) and service management (pacemaker) without needing rely
on resources that may change or be renamed.

Change-Id: I7f3f97a54aec888d99c7405310afef8e1f3907f0
2016-12-07 11:18:53 +08:00

50 lines
1.1 KiB
Puppet

# == Class: magnum::db::postgresql
#
# Class that configures postgresql for magnum
# Requires the Puppetlabs postgresql module.
#
# === Parameters
#
# [*password*]
# (Required) Password to connect to the database.
#
# [*dbname*]
# (Optional) Name of the database.
# Defaults to 'magnum'.
#
# [*user*]
# (Optional) User to connect to the database.
# Defaults to 'magnum'.
#
# [*encoding*]
# (Optional) The charset to use for the database.
# Default to undef.
#
# [*privileges*]
# (Optional) Privileges given to the database user.
# Default to 'ALL'
#
class magnum::db::postgresql(
$password,
$dbname = 'magnum',
$user = 'magnum',
$encoding = undef,
$privileges = 'ALL',
) {
include ::magnum::deps
::openstacklib::db::postgresql { 'magnum':
password_hash => postgresql_password($user, $password),
dbname => $dbname,
user => $user,
encoding => $encoding,
privileges => $privileges,
}
Anchor['magnum::db::begin']
~> Class['magnum::db::postgresql']
~> Anchor['magnum::db::end']
}