70d043dd60
TEMPEST_PLUGINS contains the list of the tempest plugins installed alongside tempest by lib/tempest. If TEMPEST_PLUGINS is not explicitly set, the new tempest_plugins variable is used to fill it by combining its items with the base devstack path. Change-Id: I9f1fa2755e16871ff9d6ba33fdeaf3023eedf8d4
15 lines
610 B
YAML
15 lines
610 B
YAML
- name: Write a job-specific local_conf file
|
|
become: true
|
|
become_user: stack
|
|
devstack_local_conf:
|
|
path: "{{ devstack_local_conf_path }}"
|
|
plugins: "{{ devstack_plugins|default(omit) }}"
|
|
base_services: "{{ devstack_base_services|default(omit) }}"
|
|
services: "{{ devstack_services|default(omit) }}"
|
|
localrc: "{{ devstack_localrc|default(omit) }}"
|
|
local_conf: "{{ devstack_local_conf|default(omit) }}"
|
|
base_dir: "{{ devstack_base_dir|default(omit) }}"
|
|
projects: "{{ zuul.projects }}"
|
|
project: "{{ zuul.project }}"
|
|
tempest_plugins: "{{ tempest_plugins|default(omit) }}"
|