diff options
Diffstat (limited to 'ci/config_tpl/juju2/bundle_tpl/rabbitmq.yaml')
-rw-r--r-- | ci/config_tpl/juju2/bundle_tpl/rabbitmq.yaml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ci/config_tpl/juju2/bundle_tpl/rabbitmq.yaml b/ci/config_tpl/juju2/bundle_tpl/rabbitmq.yaml new file mode 100644 index 00000000..daf9a13a --- /dev/null +++ b/ci/config_tpl/juju2/bundle_tpl/rabbitmq.yaml @@ -0,0 +1,18 @@ + rabbitmq-server: + charm: "./{{ ubuntu.release }}/rabbitmq-server" + num_units: {{ unit_qty() }} + options: +{% if opnfv.storage_dict.ceph is defined %} + ceph-osd-replication-count: {{ unit_ceph_qty() }} +{% endif %} +{% if os.network.ipv6 %} + prefer-ipv6: {{ os.network.ipv6 }} +{% endif %} +{% if os.ha.mode == 'ha' %} + vip: {{ opnfv.vip.rabbitmq }} + min-cluster-size: {{ unit_qty() }} +{% endif %} + to: +{% for unit_id in to_select() %} + - "lxd:nodes/{{ unit_id }}" +{% endfor %} |