pm2

Ansible Role - pm2

Install and configure PM2 for a nodejs project

Available on Ansible Galaxy: isaackehle.pm2

Variables

vars:
  flags:
    - init # Basic initialization
    - processes # Configure the node processes to start at reboot
    - upgrade # Upgrade relevant packages

  deploy_dir: # Required for where the base path lives

Examples

- hosts: all

  roles:
    - { role: isaackehle.pm2, flags: ["init"] }
    - { role: isaackehle.pm2, flags: ["processes"] }
    - { role: isaackehle.pm2, flags: ["upgrade"] }
export deploy="'deploy_dir': '/opt/servers/node'"

ansible-playbook playbooks/pm2.yml -e "{'flags': ['init'], ${deploy }}" -t init
ansible-playbook playbooks/pm2.yml -e "{'flags': ['configure'], ${deploy }}" -t processes
ansible-playbook playbooks/pm2.yml -e "{'flags': ['packages'], ${deploy }}" -t upgrade

Linting

yamllint -c yamllint.yaml .
ansible-lint .

License

MIT

Author Information

Isaac Kehle @isaackehle (twitter, github, linkedin)

References

About

Install and configure PM2 for a nodejs project

Install
ansible-galaxy install pgkehle/ansible-pm2
GitHub repository
License
mit
Downloads
162
Owner