
This patch introduce the same design than mysql for postgresql by requiring dedicated lib::python class instead of declaring a new resource package within nova module. This patch also fixes the typo on s/neutron/nova/ for sqlite_package_name. Change-Id: Ie978ad5c6bc82e07f2638f6ec722e2bbcb146449
134 lines
4.4 KiB
Puppet
134 lines
4.4 KiB
Puppet
#
|
|
# Copyright (C) 2014 eNovance SAS <licensing@enovance.com>
|
|
#
|
|
# Author: Emilien Macchi <emilien.macchi@enovance.com>
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
# == Class: nova::db
|
|
#
|
|
# Configures the Nova database.
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*database_connection*]
|
|
# (optional) Connection url to connect to nova database.
|
|
# Defaults to false.
|
|
#
|
|
# [*slave_connection*]
|
|
# (optional) Connection url to connect to nova slave database (read-only).
|
|
# Defaults to false.
|
|
#
|
|
# [*database_idle_timeout*]
|
|
# Timeout when db connections should be reaped.
|
|
# (Optional) Defaults to 3600.
|
|
#
|
|
# [*database_min_pool_size*]
|
|
# Minimum number of SQL connections to keep open in a pool.
|
|
# (Optional) Defaults to 1.
|
|
#
|
|
# [*database_max_pool_size*]
|
|
# Maximum number of SQL connections to keep open in a pool.
|
|
# (Optional) Defaults to 10.
|
|
#
|
|
# [*database_max_retries*]
|
|
# Maximum db connection retries during startup.
|
|
# Setting -1 implies an infinite retry count.
|
|
# (Optional) Defaults to 10.
|
|
#
|
|
# [*database_retry_interval*]
|
|
# Interval between retries of opening a sql connection.
|
|
# (Optional) Defaults to 10.
|
|
#
|
|
# [*database_max_overflow*]
|
|
# If set, use this value for max_overflow with sqlalchemy.
|
|
# (Optional) Defaults to 20.
|
|
#
|
|
class nova::db (
|
|
$database_connection = false,
|
|
$slave_connection = false,
|
|
$database_idle_timeout = 3600,
|
|
$database_min_pool_size = 1,
|
|
$database_max_pool_size = 10,
|
|
$database_max_retries = 10,
|
|
$database_retry_interval = 10,
|
|
$database_max_overflow = 20,
|
|
) {
|
|
|
|
include ::nova::params
|
|
|
|
# NOTE(spredzy): In order to keep backward compatibility we rely on the pick function
|
|
# to use nova::<myparam> first the nova::db::<myparam>
|
|
$database_connection_real = pick($::nova::database_connection, $database_connection)
|
|
$slave_connection_real = pick($::nova::slave_connection, $slave_connection)
|
|
$database_idle_timeout_real = pick($::nova::database_idle_timeout, $database_idle_timeout)
|
|
$database_min_pool_size_real = pick($::nova::database_min_pool_size, $database_min_pool_size)
|
|
$database_max_pool_size_real = pick($::nova::database_max_pool_size, $database_max_pool_size)
|
|
$database_max_retries_real = pick($::nova::database_max_retries, $database_max_retries)
|
|
$database_retry_interval_real = pick($::nova::database_retry_interval, $database_retry_interval)
|
|
$database_max_overflow_real = pick($::nova::database_max_overflow, $database_max_overflow)
|
|
|
|
if $database_connection_real {
|
|
|
|
validate_re($database_connection_real,
|
|
'(sqlite|mysql|postgresql):\/\/(\S+:\S+@\S+\/\S+)?')
|
|
|
|
case $database_connection_real {
|
|
/^mysql:\/\//: {
|
|
$backend_package = false
|
|
require 'mysql::bindings'
|
|
require 'mysql::bindings::python'
|
|
}
|
|
/^postgresql:\/\//: {
|
|
$backend_package = false
|
|
require 'postgresql::lib::python'
|
|
}
|
|
/^sqlite:\/\//: {
|
|
$backend_package = $::nova::params::sqlite_package_name
|
|
}
|
|
default: {
|
|
fail('Unsupported backend configured')
|
|
}
|
|
}
|
|
|
|
if $backend_package and !defined(Package[$backend_package]) {
|
|
package {'nova-backend-package':
|
|
ensure => present,
|
|
name => $backend_package,
|
|
tag => 'openstack',
|
|
}
|
|
}
|
|
|
|
nova_config {
|
|
'database/connection': value => $database_connection_real, secret => true;
|
|
'database/idle_timeout': value => $database_idle_timeout_real;
|
|
'database/min_pool_size': value => $database_min_pool_size_real;
|
|
'database/max_retries': value => $database_max_retries_real;
|
|
'database/retry_interval': value => $database_retry_interval_real;
|
|
'database/max_pool_size': value => $database_max_pool_size_real;
|
|
'database/max_overflow': value => $database_max_overflow_real;
|
|
}
|
|
|
|
if $slave_connection_real {
|
|
nova_config {
|
|
'database/slave_connection': value => $slave_connection_real, secret => true;
|
|
}
|
|
} else {
|
|
nova_config {
|
|
'database/slave_connection': ensure => absent;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|