devstack-plugin-tobiko/roles/devstack-tobiko-common/defaults/main.yaml
Federico Ressi 2fd41f4c9c [Vagrant] Update Vagranfile and its playbooks
- add multinode support for devstack nodes
- write clouds.yaml and ssh_config file to devstack-tobiko-deploy source dir
- update tobiko.conf file
- create simple functional test cases to test vagrant configuration
- remove local projects synchronization

Change-Id: I9d2517d5fa6c72b98726af8aa3ba9fa8bcf0918f
2022-07-16 07:31:40 +00:00

33 lines
892 B
YAML

---
devstack_restack: true
devstack_dest_dir: /opt/stack
devstack_local_conf_file: '{{ playbook_dir }}/local.conf'
devstack_projects_dir: '{{ playbook_dir | dirname }}'
devstack_dir: '{{ devstack_dest_dir }}/devstack'
devstack_git_repo: 'https://opendev.org/openstack/devstack.git'
devstack_plugin_tobiko_dir: '{{ devstack_dest_dir }}/devstack-plugin-tobiko'
devstack_plugin_tobiko_src_dir: ''
tobiko_config_path: '{{ devstack_plugin_tobiko_src_dir }}/tobiko.conf'
tobiko_config_dir: '{{ tobiko_config_path | realpath | dirname }}'
sudo_secure_path: ''
test_dir: '{{ devstack_dest_dir }}/tobiko'
tox_envlist: ''
tox_extra_args: ''
tox_command_executable: 'tox'
tox_command_line: >-
{{ tox_command_executable }}
{% if (tox_envlist | length) > 0 %}
-e '{{ tox_envlist }}'
{% endif %}
{% if (tox_extra_args | length) > 0 %}
{{ tox_extra_args }}
{% endif %}