add pod19 without vlan.
[joid.git] / ci / config_tpl / juju2 / bundle_tpl / keystone.yaml
1     keystone:
2       charm: "./{{ ubuntu.release }}/keystone"
3       num_units: {{ unit_qty() }}
4 {% if os.service.bindings %}
5       bindings:
6         "": *oam-space
7         public: *public-space
8         admin: *admin-space
9         internal: *internal-space
10         shared-db: *internal-space
11 {% endif %}
12       options:
13         openstack-origin: *openstack-origin
14 {% if os.git_repo.origin_git %}
15         openstack-origin-git: "{{ os.git_repo.branch }}"
16 {% endif %}
17         region: *openstack-region
18         admin-role: {{ os.admin.role }}
19         keystone-admin-role: {{ os.admin.role }}
20         preferred-api-version: 3
21 {% if os.network.ipv6 %}
22         prefer-ipv6: {{ os.network.ipv6 }}
23 {% endif %}
24 {% if os.api.worker_multiplier %}
25         worker-multiplier: *worker-multiplier
26 {% endif %}
27         admin-password: {{ opnfv.admin_password | default(os.admin.password) }}
28         admin-token: {{ os.admin.name }}
29 {% if os.ha.mode == 'ha' %}
30         vip: {{ opnfv.vip.keystone }}
31 {% endif %}
32       to:
33 {% for unit_id in to_select() %}
34         - "lxd:nodes/{{ unit_id }}"
35 {% endfor %}