Files
puppet-cloudkitty/lib/puppet/provider/cloudkitty_api_uwsgi_config/openstackconfig.rb
Thomas Goirand 36bf4eefc5 Add support for cloudkitty_api_uwsgi_config in Debian
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 Aodh API. Therefore, this patch adds a new
cloudkitty_api_uwsgi_config provider as well as a new
cloudkitty::wsgi::uwsgi class.

Change-Id: I5d0635800d26327fbdbaa33299927f92eb651fc8
2021-04-12 21:13:04 +02:00

11 lines
228 B
Ruby

Puppet::Type.type(:cloudkitty_api_uwsgi_config).provide(
:openstackconfig,
:parent => Puppet::Type.type(:openstack_config).provider(:ruby)
) do
def self.file_path
'/etc/cloudkitty/cloudkitty-api-uwsgi.ini'
end
end