summaryrefslogtreecommitdiffstats
path: root/ci/config_tpl/juju2/bundle_tpl/openstack-dashboard.yaml
blob: eec485eb69fb1d5045276fc03e6137ca08f40797 (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
26
27
28
    openstack-dashboard:
      charm: "./{{ ubuntu.release }}/openstack-dashboard"
      num_units: {{ unit_qty() }}
{% if os.service.bindings %}
      bindings:
        shared-db: internal-api
        website: internal-api
{% if os.ha.mode == 'ha' %}
        cluster: internal-api
{% endif %}
{% endif %}
      options:
        openstack-origin: "cloud:{{ ubuntu.release }}-{{ os.release }}"
        secret: admin
        webroot: /
{% if os.network.ipv6 %}
        prefer-ipv6: {{ os.network.ipv6 }}
{% endif %}
{% if os.ha.mode == 'ha' %}
        vip: {{ opnfv.vip.dashboard }}
{% endif %}
{% if os.beta.public_api %}
        endpoint-type: internalURL
{% endif %}
      to:
{% for unit_id in to_select() %}
        - "lxd:nodes/{{ unit_id }}"
{% endfor %}