added ssl support based on default.
[joid.git] / ci / config_tpl / juju2 / bundle_tpl / glance.yaml
1     glance:
2       charm: "./{{ ubuntu.release }}/glance"
3       num_units: {{ unit_qty() }}
4 {% if os.service.bindings %}
5       constraints: *ceph-access-constr
6       bindings:
7         "": *oam-space
8         public: *public-space
9         admin: *admin-space
10         internal: *internal-space
11         shared-db: *internal-space
12 {% endif %}
13       options:
14         openstack-origin: *openstack-origin
15         worker-multiplier: *worker-multiplier
16         region: *openstack-region
17 {% if os.git_repo.origin_git %}
18         openstack-origin-git: "{{ os.git_repo.branch }}"
19 {% endif %}
20 {% if os.network.ipv6 %}
21         prefer-ipv6: {{ os.network.ipv6 }}
22 {% endif %}
23 {% if opnfv.storage_dict.ceph is defined %}
24         ceph-osd-replication-count: {{ unit_ceph_qty() }}
25 {% endif %}
26 {% if os.ha.mode == 'ha' %}
27         vip: *glance-vip
28 {% endif %}
29 {% if os.api.ssl %}
30         ssl_ca: *ssl_ca
31         ssl_cert: *ssl_cert
32         ssl_key: *ssl_key
33         os-public-hostname: *hostname_glance_public
34         os-internal-hostname: *hostname_glance_public
35         os-admin-hostname: *hostname_glance_public
36 {% endif %}
37       to:
38 {% for unit_id in to_select() %}
39         - "lxd:nodes/{{ unit_id }}"
40 {% endfor %}