openstack-ansible/playbooks/roles/haproxy_server
Jean-Philippe Evrard aba131d776 Changed certificate order for pem generation with CA files
pem generation should always start from closer certificate
to the top of the chain. This commit fixes that.

Change-Id: I315bf4f818cc8eb606823a48843f1931e1779223
Closes-Bug: #1493421
2015-09-08 17:24:15 +02:00
..
defaults Adds the ability to provide user certificates to HAProxy 2015-09-03 18:37:00 +00: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 Enable HAProxy Stats Web UI 2015-08-24 21:23:43 +00: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

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"