All Projects → zenoamaro → ansible-supervisord

zenoamaro / ansible-supervisord

Licence: MIT license
An Ansible role for deploying and configuring Supervisor on unix hosts.

Programming Languages

shell
77523 projects
ApacheConf
554 projects

Supervisor for Ansible

A role for deploying and configuring Supervisor and extensions on unix hosts using Ansible.

It can additionally be used as a playbook for quickly provisioning hosts.

Vagrant machines are provided to produce VMs for integration testing.

Supports

Supported Supervisor versions:

  • Supervisor 3+

Supported targets:

  • Ubuntu 14.04 LTS "Trusty Tahr"
  • Ubuntu 12.04 LTS "Precise Pangolin"
  • Debian (untested)
  • RedHat (untested)

Installation methods:

  • Binary packages from the system repos.

Usage

Clone this repo into your roles directory:

$ git clone https://github.com/zenoamaro/ansible-supervisord.git roles/supervisord

And add it to your play's roles:

- hosts: ...
  roles:
    - supervisord
    - ...

This roles comes preloaded with almost every available default. You can override each one in your hosts/group vars, in your inventory, or in your play. See the annotated defaults in defaults/main.yml for help in configuration. All provided variables start with supervisord_ or supervisorctl_.

You can also use the role as a playbook. You will be asked which hosts to provision, and you can further configure the play by using --extra-vars.

$ ansible-playbook -i inventory --extra-vars='{...}' main.yml

Run the tests by provisioning the appropriate VM:

$ vagrant up test-ubuntu-trusty

At the moment, the following test boxes are available:

  • test-ubuntu-precise
  • test-ubuntu-trusty

Still to do

  • Add tasks for quickly creating supervisor programs
  • Support for fastcgi programs, event listeners, ...

Changelog

0.3.2

  • The package list is not being updated in playbooks anymore.

0.3.1

  • Fixed missing newlines for some configuration variables.
  • Added warning for auto-generated files.
  • Updated provisioning to use the new Vagrant private keys.

0.3.0

  • Revised the INIT script's restart sequence.
  • Added a test box for Ubuntu Trusty 14.04.
  • Sleep time between daemon restarts is now configurable.

0.2.0

  • Delegated installation of supervisord to the OS package manager.

0.1.0

Initial version.

License

The MIT License (MIT)

Copyright (c) 2015, zenoamaro [email protected]

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].