Version information
Start using this module
Add this module to your Puppetfile:
mod 'engage-uwsgi', '1.2.0'
Learn more about managing modules with a PuppetfileDocumentation
puppet-uwsgi
A puppet module for installing and managing uwsgi
Description
This module installs and configures uWSGI in Emperor mode.
It can also create and manage uwsgi applications that run under the emperor, which are best defined in hiera.
Just about every option is configurable, so it should work on most distributions by putting together a hiera file.
Classes
uwsgi
The main entry point. Simply include uwsgi
to accept all the default
parameters. The service file template will, by default, auto-configure itself for
redhat init.d or upstart depending on the service provider.
Parameters
-
package_name
The package name to install. Default: 'uwsgi' -
package_ensure
Package state. Default: 'installed'If 'absent' or 'purged', then remove the
service_file
andconfig_file
also -
package_provider
The provider to use to install the package. Default: 'pip' -
service_name
The name of the service to run uwsgi. Default: 'uwsgi' -
service_file
The location of the service file. Default: '/etc/init/uwsgi.conf' -
service_template
The location of the template to generate the service_file. Default: 'uwsgi/uwsgi_upstart.conf.erb' -
service_ensure
The service state. Default: true -
service_enable
The service onboot state. Default: true -
service_provider
The service provider. Default: 'upstart'upstart
is required for the defaultservice_file
, and works on RedHat >= 6. Settingservice_provider
toredhat
will now deploy the init.d service file, unless you specifically setservice_template
etc. -
manage_service_file
Whether to override the system service file if it exists. Default: true -
config_file
The location of the uwsgi config file. Default: '/etc/uwsgi.ini' -
log_dir
The location of the uwsgi emperor log. Default: '/var/log/uwsgi/uwsgi-emperor.log' -
app_directory
Vassal directory for application config files.RedHat default: '/etc/uwsgi.d' Other default: '/etc/uwsgi/apps-enabled'
-
install_pip
Install pip if it's not already installed? Default: true -
install_python_dev
Install python header files if not already installed? Default: true -
python_pip
Package to be installed for pip Default: 'python-pip' -
python_dev
Package to be installed for python headers Default RedHat: 'python-devel' Default Other: 'python-dev' -
emperor_options
Extra options to set in the emperor config file. Default: undef
Using Hiera
Sets up some custom options within the emperor config file:
---
uwsgi::emperor_options:
vacuum: 'True'
reload-mercy: 8
Don't manage python or pip, and use apt-get to install uwsgi. Don't manage the service file, as it will be provided by the package itself:
---
uwsgi::install_pip: false
uwsgi::install_python_dev: false
uwsgi::package_provider: 'apt'
uwsgi::manage_service_file: false
Remove uwsgi:
---
uwsgi::package_ensure: 'absent'
uwsgi::service_ensure: false
uwsgi::service_enable: false
uwsgi::install_pip: false
uwsgi::install_python_dev: false
Defined Types
uwsgi::app
Responsible for creating uwsgi applications that run under the uwsgi emperor.
You shouldn't need to use this type directly, as the uwsgi
class will
automatically create all applications defined in hiera under the uwsgi::app
key. See the hiera section below for examples.
Parameters
-
ensure
Ensure the config file exists. Default: 'present' -
template
The template used to construct the config file. Default: 'uwsgi/uwsgi_app.ini.erb' -
uid
The user to run the application as. Required. May be the user name, not just the id. -
gid
The group to run the application as. Required. May be the group name, not just the id. -
application_options
Extra options to set in the application config file -
environment_variables
Extra environment variabls to set in the application config file
Using Hiera
Configure a django application:
---
uwsgi::app:
django:
ensure: 'present'
uid: 'django'
gid: 'django'
application_options:
chdir: '/path/to/project'
module: 'mysite.wsgi:application'
socket: '/tmp/uwsgi_django.sock'
master: 'True'
vaccum: 'True'
max-requests: '5000'
buffer-size: '32768'
processes: 4
threads: 8
Configure multiple applications (all yaml files are aggregated using
hiera_hash
):
# common.yaml
---
uwsgi::app:
django_1:
ensure: 'present'
uid: 'django'
gid: 'django'
application_options:
chdir: '/path/to/project'
module: 'mysite.wsgi:application'
socket: '/tmp/uwsgi_django.sock'
# role_app_server.yaml
---
uwsgi::app:
django_2:
ensure: 'present'
uid: 'django'
gid: 'django'
application_options:
chdir: '/path/to/project2'
module: 'mysite.wsgi:application'
socket: '/tmp/uwsgi_django2.sock'
1.2.0 - 2014-08-20
- support for passing an array of values into app::application_options (Thanks @rayl)
1.1.0 - 2014-07-17
- Support for listing environment variables per application (Thanks @kimor79)
- Fix typo in the upstart script (Thanks @Kodapa)
1.0.1 - 2014-06-20
- emperor log directory can now be changed
1.0.0 - 2014-06-19
- Added init.d service template
- Auto-configure template based on service provider
0.9.0 - 2014-05-24
- Added support for uwsgi vassal creation
Dependencies
- puppetlabs-stdlib (>=3.2.0)
The MIT License (MIT) Copyright (c) 2014 Engage Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.