Files
openstack-ansible-haproxy_s…/tasks/haproxy_service_config.yml
Logan V 89f7570c83 Add haproxy_service_enabled boolean
Allow endpoints to be disabled in the haproxy_default_services
dict.

This is needed specifically for https://review.openstack.org/#/c/340175/
which requires that the nova-metadata-api service move to the
compute nodes when the networking-calico neutron plugin is used.

In such an environment, the metadata nodes serve requests only for
the local hypervisor and LB endpoints for the metadata service
are not needed.

The corresponding flag disabling haproxy_service_enabled will be
added to the Calico change.

Change-Id: I584fe2647ba0d6a70908e55168360752a08261c5
2016-08-14 08:55:36 +00:00

30 lines
1.1 KiB
YAML

---
# Copyright 2014, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: "Create haproxy service config files"
template:
src: service.j2
dest: "/etc/haproxy/conf.d/{{ item.service.haproxy_service_name }}"
with_items: "{{ haproxy_service_configs }}"
when:
- (item.service.haproxy_backend_nodes is defined and
item.service.haproxy_backend_nodes | length > 0) or
(item.service.haproxy_backup_nodes is defined and
item.service.haproxy_backup_nodes | length > 0)
- item.service.haproxy_service_enabled | default('True') | bool
notify: Restart haproxy
tags:
- haproxy-service-config