
This commit consists HAProxy ansible bits including config generation, container deployment and hot reloads. Closes-Bug: #1477915 Co-Authored-By: Sam Yaple <sam@yaple.net> Change-Id: Ie93fa68fdb6b2885889c992ff1267d38b68e0cbc Partially-implements: blueprint ansible-service
17 lines
641 B
YAML
Executable File
17 lines
641 B
YAML
Executable File
---
|
|
project_name: "haproxy"
|
|
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
docker_haproxy_registry: "{{ docker_registry }}"
|
|
docker_haproxy_namespace: "{{ docker_namespace }}"
|
|
kolla_haproxy_base_distro: "{{ kolla_base_distro }}"
|
|
kolla_haproxy_install_type: "{{ kolla_install_type }}"
|
|
kolla_haproxy_container_name: "haproxy"
|
|
|
|
docker_haproxy_image: "{{ docker_haproxy_registry }}{{ docker_haproxy_namespace }}/{{ kolla_haproxy_base_distro }}-{{ kolla_haproxy_install_type }}-{{ kolla_haproxy_container_name }}"
|
|
docker_haproxy_tag: "{{ openstack_release }}"
|
|
docker_haproxy_image_full: "{{ docker_haproxy_image }}:{{ docker_haproxy_tag }}"
|