summaryrefslogtreecommitdiffstats
path: root/ci/config_tpl/juju2/bundle_tpl/rabbitmq.yaml
blob: ff0ca7734063d3df8f79b0a06823c63b6e6becd9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
    rabbitmq-server:
      charm: "./{{ ubuntu.release }}/rabbitmq-server"
      num_units: {{ unit_qty() }}
{% if os.service.bindings %}
      bindings:
        "": *oam-space
        amqp: *internal-space
        cluster: *internal-space
{% endif %}
      series: {{ ubuntu.release }}
      options:
        source: *openstack-origin
{% 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' %}
        min-cluster-size: {{ unit_qty() }}
{% endif %}
      to:
{% for unit_id in to_select() %}
        - "lxd:nodes/{{ unit_id }}"
{% endfor %}