rabbitmq-server:
      charm: "local:{{ 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() %}
        - "lxc:nodes={{ unit_id }}"
{% endfor %}