weareinteractive.pm2
is an Ansible role which:
- installs pm2
- manages JSON apps
- configures service
Using ansible-galaxy
:
$ ansible-galaxy install weareinteractive.pm2
Using requirements.yml
:
- src: weareinteractive.pm2
Using git
:
$ git clone https://github.com/weareinteractive/ansible-pm2.git weareinteractive.pm2
- Ansible >= 2.0
- installed nodejs i.e. with weareinteractive.nodejs
Note:
Since Ansible Galaxy supports organization now, this role has moved from
franklinkim.pm2
toweareinteractive.pm2
!
Here is a list of all the default variables for this role, which are also available in defaults/main.yml
.
---
# pm2_apps:
# - run: pm2.json # you can also run a .js file like app.js
# args: --name console_error # optional arguements to pass i.e. to app.js
# path: /var/www/myapp # optional chdir path
# env: # optional environment settings
# NODE_ENV: production
#
# list of paths to JSON app declarations
pm2_apps: []
# startup system
pm2_startup: ubuntu
# service name for startup system
pm2_service_name: pm2-init.sh
# start on boot
pm2_service_enabled: yes
# current state: started, stopped
pm2_service_state: started
# version
pm2_version:
These are the handlers that are defined in handlers/main.yml
.
---
- name: restart pm2
service:
name: "{{ pm2_service_name }}"
state: restarted
when: pm2_service_state != 'stopped'
This is an example playbook:
---
- hosts: all
# pre_tasks for installing dependencies for running the tests within docker
pre_tasks:
- name: Downloading install script
get_url:
url: https://deb.nodesource.com/setup_5.x
dest: /tmp/setup_nodejs
mode: "0777"
- name: Installing sources
command: /tmp/setup_nodejs
- name: Installing packages
action: "{{ ansible_pkg_mgr }} pkg=nodejs state=present"
roles:
- weareinteractive.pm2
vars:
pm2_apps:
- run: apps.json
path: "/etc/ansible/roles/weareinteractive.pm2/tests"
- run: console_error.js
args: --name console_error
path: "/etc/ansible/roles/weareinteractive.pm2/tests/apps"
env:
NODE_ENV: dev
pm2_startup: ubuntu
$ git clone https://github.com/weareinteractive/ansible-pm2.git
$ cd ansible-pm2
$ make test
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests and examples for any new or changed functionality.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Note: To update the README.md
file please install and run ansible-role
:
$ gem install ansible-role
$ ansible-role docgen
Copyright (c) We Are Interactive under the MIT license.