eeb535aa2e
Adding the role needed to run the qdrouterd as an infrastructure component which provides a messaging backend for the oslo.messaging AMQP 1.0 driver. The qdrouterd will provide direct messaging capabilities for the RPC messaging pattern in support of hybrid messaging deployments. Implements: blueprint qdrouterd-role Change-Id: I74c654b3c70f61f81c2c7efa87f076a62a4a2dd8
23 lines
707 B
YAML
23 lines
707 B
YAML
---
|
|
project_name: "qdrouterd"
|
|
|
|
qdrouterd_services:
|
|
qdrouterd:
|
|
container_name: qdrouterd
|
|
group: qdrouterd
|
|
enabled: true
|
|
image: "{{ qdrouterd_image_full }}"
|
|
volumes:
|
|
- "{{ node_config_directory }}/qdrouterd/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "qdrouterd:/var/lib/qdrouterd/"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
|
|
|
|
####################
|
|
# Docker
|
|
####################
|
|
qdrouterd_image: "{{ docker_registry ~ '/' if docker_registry else '' }}{{ docker_namespace }}/{{ kolla_base_distro }}-{{ kolla_install_type }}-qdrouterd"
|
|
qdrouterd_tag: "{{ openstack_release }}"
|
|
qdrouterd_image_full: "{{ qdrouterd_image }}:{{ qdrouterd_tag }}"
|