openstack-ansible/playbooks/roles/haproxy_server
seetha ramaiah munnangi 00a3ff23c5 Add Administration Capabilites to the Haproxy Stats GUI
Change-Id: If1717f539167d4a6b67e14616bd1de7fbd31dd46
Closes-Bug: #1499097
2015-09-23 15:47:29 -07:00
..
defaults Configure HAProxy SSL frontends with cipher suite 2015-09-22 19:22:18 -07:00
files Enable HAProxy Stats Web UI 2015-08-24 21:23:43 +00:00
handlers Changed certificate order for pem generation with CA files 2015-09-08 17:24:15 +02:00
meta Keystone SSL cert/key distribution and configuration 2015-08-19 07:51:09 +00:00
tasks Adds the ability to provide user certificates to HAProxy 2015-09-03 18:37:00 +00:00
templates Add Administration Capabilites to the Haproxy Stats GUI 2015-09-23 15:47:29 -07:00
CONTRIBUTING.rst Convert existing roles into galaxy roles 2015-02-18 10:56:25 +00:00
LICENSE Convert existing roles into galaxy roles 2015-02-18 10:56:25 +00:00
README.rst Convert existing roles into galaxy roles 2015-02-18 10:56:25 +00:00

README.rst

OpenStack Haproxy Server

tags

openstack, galera, haproxy, cloud, ansible

category

*nix

Role for the installation and setup of haproxy

- name: Install haproxy
  hosts: haproxy_hosts
  user: root
  roles:
    - { role: "haproxy_server", tags: [ "haproxy-server" ] }
  vars:
    haproxy_service_configs:
      - service:
          hap_service_name: group_name
          hap_backend_nodes: "{{ groups['group_name'][0] }}"
          hap_backup_nodes: "{{ groups['group_name'][1:] }}"
          hap_port: 80
          hap_balance_type: http
          hap_backend_options:
            - "forwardfor"
            - "httpchk"
            - "httplog"