An open API service indexing awesome lists of open source software.

https://github.com/bsedin/ansible-haproxy

HAProxy ansible role
https://github.com/bsedin/ansible-haproxy

ansible ansible-role docker haproxy

Last synced: 2 months ago
JSON representation

HAProxy ansible role

Awesome Lists containing this project

README

          

# HAProxy ansible role

Create `./library` directory in your ansible project:

```
mkdir ./library
```

And configure `ansible.cfg`:

```
[defaults]
roles_path = ./library
```

Add submodule:

```
git submodule add git@github.com:kressh/ansible-haproxy.git library/haproxy
```

Use role:

```yaml
---
- hosts: yourserver.io
remote_user: ansible
become: true
roles:
- haproxy
```