2102631110
DocImpact Implments: blueprint ansible-tempest Change-Id: Iadd86d9d91438f056c433b9a2016f32587c92878
27 lines
662 B
YAML
27 lines
662 B
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_items:
|
|
- "tempest"
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "{{ item }}.json.j2"
|
|
dest: "{{ node_config_directory }}/{{ item }}/config.json"
|
|
with_items:
|
|
- "tempest"
|
|
|
|
- name: Copying over tempest.conf
|
|
merge_configs:
|
|
vars:
|
|
project_name: "tempest"
|
|
sources:
|
|
- "{{ role_path }}/templates/tempest.conf.j2"
|
|
- "{{ node_custom_config }}/tempest.conf"
|
|
dest: "{{ node_config_directory }}/{{ item }}/tempest.conf"
|
|
with_items:
|
|
- "tempest"
|