da8ed8acc6
This patch is adding the configuration of the number of workers, threads, and the size of the listen queue in Debian, which uses uwsgi to run Octavia API. Therefore, this patch adds a new octavia_api_uwsgi_config provider as well as a new octavia::wsgi::uwsgi class. Change-Id: I89e2bb5bb127020adcaabe26e62f68123fab3990
51 lines
2.0 KiB
Puppet
51 lines
2.0 KiB
Puppet
# == Class: octavia::deps
|
|
#
|
|
# Octavia anchors and dependency management
|
|
#
|
|
class octavia::deps {
|
|
# Setup anchors for install, config and service phases of the module. These
|
|
# anchors allow external modules to hook the begin and end of any of these
|
|
# phases. Package or service management can also be replaced by ensuring the
|
|
# package is absent or turning off service management and having the
|
|
# replacement depend on the appropriate anchors. When applicable, end tags
|
|
# should be notified so that subscribers can determine if installation,
|
|
# config or service state changed and act on that if needed.
|
|
anchor { 'octavia::install::begin': }
|
|
-> Package<| tag == 'octavia-package'|>
|
|
~> anchor { 'octavia::install::end': }
|
|
-> anchor { 'octavia::config::begin': }
|
|
-> Octavia_config<||>
|
|
~> anchor { 'octavia::config::end': }
|
|
-> anchor { 'octavia::certificate::begin': }
|
|
-> File<| tag == 'octavia-certificate' |>
|
|
~> anchor { 'octavia::certificate::end': }
|
|
-> anchor { 'octavia::db::begin': }
|
|
-> anchor { 'octavia::db::end': }
|
|
~> anchor { 'octavia::dbsync::begin': }
|
|
-> anchor { 'octavia::dbsync::end': }
|
|
~> anchor { 'octavia::service::begin': }
|
|
~> Service<| tag == 'octavia-service' |>
|
|
~> anchor { 'octavia::service::end': }
|
|
|
|
# policy config should occur in the config block also.
|
|
Anchor['octavia::config::begin']
|
|
-> Openstacklib::Policy::Base<||>
|
|
~> Anchor['octavia::config::end']
|
|
|
|
# On any uwsgi config change, we must restart Octavia API.
|
|
Anchor['octavia::config::begin']
|
|
-> Octavia_api_uwsgi_config<||>
|
|
~> Anchor['octavia::config::end']
|
|
|
|
# all db settings should be applied and all packages should be installed
|
|
# before dbsync starts
|
|
Oslo::Db<||> -> Anchor['octavia::dbsync::begin']
|
|
|
|
# Installation or config changes will always restart services.
|
|
Anchor['octavia::install::end'] ~> Anchor['octavia::service::begin']
|
|
Anchor['octavia::config::end'] ~> Anchor['octavia::service::begin']
|
|
|
|
# Changes in certificate or folders will restart services.
|
|
Anchor['octavia::certificate::end'] ~> Anchor['octavia::service::begin']
|
|
}
|