blob: 1020340f1470753606caf0f5fcd11df935d3ba88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
rabbitmq-server:
charm: "local:{{ ubuntu.release }}/rabbitmq-server"
num_units: {{ unit_qty() }}
options:
{% if os.ha.mode == 'ha' %}
vip: {{ opnfv.vip.rabbitmq }}
min-cluster-size: {{ unit_qty() }}
{% endif %}
to:
{% for unit_id in to_select() %}
- "lxc:nodes={{ unit_id }}"
{% endfor %}
|