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
- Host: GitHub
- URL: https://github.com/bsedin/ansible-haproxy
- Owner: bsedin
- License: mit
- Created: 2018-04-26T15:37:36.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2020-11-25T10:20:30.000Z (over 5 years ago)
- Last Synced: 2025-06-17T23:40:57.158Z (about 1 year ago)
- Topics: ansible, ansible-role, docker, haproxy
- Language: HTML
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```