339b27c7fe
First non-trivial scenario we'll be testing in gates will be cinder + ceph. This patchset is supposed to create framework to easily add new testing scenarios. Change-Id: I6790eaf5cf3297af04a64e4169a39b6e2cd1890f
27 lines
736 B
Django/Jinja
27 lines
736 B
Django/Jinja
---
|
|
kolla_base_distro: "{{ base }}"
|
|
kolla_install_type: "{{ type }}"
|
|
|
|
{% if is_multinode %}
|
|
enable_haproxy: "no"
|
|
kolla_internal_vip_address: "{{ api_interface_address }}"
|
|
{% else %}
|
|
kolla_internal_vip_address: "169.254.169.10"
|
|
{% endif %}
|
|
|
|
network_interface: "{{ api_interface_name }}"
|
|
docker_restart_policy: "never"
|
|
# NOTE(Jeffrey4l): use different a docker namespace name in case it pull image from hub.docker.io when deplying
|
|
docker_namespace: "lokolla"
|
|
docker_registry: "{{ api_interface_address }}:4000"
|
|
neutron_external_interface: "fake_interface"
|
|
enable_horizon: "yes"
|
|
enable_heat: "no"
|
|
openstack_logging_debug: "True"
|
|
openstack_service_workers: "1"
|
|
|
|
{% if 'ceph' in action %}
|
|
enable_ceph: "yes"
|
|
enable_cinder: "yes"
|
|
{% endif %}
|