puppet-vitrage/manifests/db/postgresql.pp
ZhongShengping 0fa819aafa 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: I9265926488573daeba3acfcd8659caef3e37b9e2
2016-12-07 16:09:31 +08:00

50 lines
1.1 KiB
Puppet

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