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
This commit is contained in:
Nate Potter 2016-03-02 13:47:55 -08:00
parent aa0be5a88b
commit f5333abb98
2 changed files with 5 additions and 0 deletions

View File

@ -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

View File

@ -0,0 +1,4 @@
---
features:
- The haproxy-install.yml playbook will now be
run as a part of setup-infrastructure.yml.