-
Notifications
You must be signed in to change notification settings - Fork 1
/
CentOS7x_Install-HAProxy-playbook.yml
80 lines (61 loc) · 2.46 KB
/
CentOS7x_Install-HAProxy-playbook.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
################################################################################
# description: Installs HAProxy on CentOS7x
# usage: ansible-playbook CentOS7x_Install-HAProxy-playbook.yml --extra-vars 'HostOrGroup=YourServerOrGroupNameGoesHere'
# author: Ernest G. Wilson II <[email protected]> (https://github.com/ernestgwilsonii)
# license: MIT
################################################################################
# Ansible Playbook options
# REF: http://docs.ansible.com/ansible/playbooks.html
#####################################################
- name: Install HAProxy on CentOS7x
hosts: "{{ HostOrGroup|default ('FATAL ERROR --> HostOrGroup NOT SET! You must specify either a Host or a Group name!') }}"
serial: "100%"
gather_facts: False
tasks:
# Install yum packages
# REF: http://docs.ansible.com/ansible/yum_module.html
######################################################
- name: Install haproxy
yum:
name=haproxy
state=latest
# Restart firewalld to make sure it is running OK before changing any rules
# REF: http://docs.ansible.com/ansible/service_module.html
##########################################################
- name: Ensure the firewalld service is enabled and re-started before changing any rules
service:
name=firewalld
enabled=yes
state=restarted
# Update the firewalld configuration
# REF: http://docs.ansible.com/ansible/firewalld_module.html
############################################################
- name: Update firewall to allow port TCP 80 for incoming HAProxy connections
firewalld:
port=80/tcp
permanent=true
immediate=yes
state=enabled
zone=public
# Use the template module to populate files with data
# REF: http://docs.ansible.com/ansible/template_module.html
###########################################################
# /etc/haproxy/haproxy.cfg
- name: Fill in the variables and copy templates/HAProxy/haproxy.cfg.j2 to remote /etc/haproxy/haproxy.cfg
template:
src=templates/HAProxy/haproxy.cfg.j2
dest=/etc/haproxy/haproxy.cfg
owner=root
group=root
mode=0644
# Enable and start ngonx
# REF: http://docs.ansible.com/ansible/service_module.html
##########################################################
- name: Enable and start the haproxy service
service:
name=haproxy
enabled=yes
state=restarted
# Note: Verify nginx via SSH command line:
# systemctl status haproxy