From f5333abb988867f271224bbf938f3cf201f711f0 Mon Sep 17 00:00:00 2001 From: Nate Potter Date: Wed, 2 Mar 2016 13:47:55 -0800 Subject: [PATCH] Add haproxy-install to setup-infrastructure.yml Right now users who are using haproxy rather than a physical load balancer need to run the haproxy-install.yml playbook, but it is not included in setup-everything. It is not very clearly documented that running this seperate playbook is necessary, since the haproxy configuration is listed as (optional) in the installation guide. Also, if the user has aphysical load balancer they will not configure haproxy_hosts in /etc/openstack_deploy, so this playbook will be skipped anyways. Change-Id: I368adf5a19ba865e4e21bc8bcde096018bed8389 Partial-bug: #1552362 --- playbooks/setup-infrastructure.yml | 1 + ...haproxy-install-setup-infrastructure-d1d17fd1a92b68a9.yaml | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 releasenotes/notes/haproxy-install-setup-infrastructure-d1d17fd1a92b68a9.yaml diff --git a/playbooks/setup-infrastructure.yml b/playbooks/setup-infrastructure.yml index 844862a092..57cf92f238 100644 --- a/playbooks/setup-infrastructure.yml +++ b/playbooks/setup-infrastructure.yml @@ -13,6 +13,7 @@ # See the License for the specific language governing permissions and # limitations under the License. +- include: haproxy-install.yml - include: memcached-install.yml - include: repo-install.yml - include: galera-install.yml diff --git a/releasenotes/notes/haproxy-install-setup-infrastructure-d1d17fd1a92b68a9.yaml b/releasenotes/notes/haproxy-install-setup-infrastructure-d1d17fd1a92b68a9.yaml new file mode 100644 index 0000000000..d2e3f63a55 --- /dev/null +++ b/releasenotes/notes/haproxy-install-setup-infrastructure-d1d17fd1a92b68a9.yaml @@ -0,0 +1,4 @@ +--- +features: + - The haproxy-install.yml playbook will now be + run as a part of setup-infrastructure.yml.