047dbf12e0
- See instructions in doc/nova-fake-driver.rst Implements: blueprint nova-fake-driver Change-Id: I553a40c2df39bdcc391eb1b8b2b8fd5f4ed48c33 Signed-off-by: Hui Kang <kangh@us.ibm.com> Signed-off-by: Marcio D. Silva <marcios@us.ibm.com>
28 lines
981 B
YAML
28 lines
981 B
YAML
---
|
|
- name: Ensuring config directories exist
|
|
file:
|
|
path: "{{ node_config_directory }}/nova-compute-fake-{{ item }}"
|
|
state: "directory"
|
|
recurse: yes
|
|
with_sequence: start=1 end={{ num_nova_fake_per_node }}
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "roles/nova/templates/nova-compute.json.j2"
|
|
dest: "{{ node_config_directory }}/nova-compute-fake-{{ item }}/config.json"
|
|
with_sequence: start=1 end={{ num_nova_fake_per_node }}
|
|
|
|
- name: Copying over nova.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/nova.conf.j2"
|
|
- "/etc/kolla/config/global.conf"
|
|
- "/etc/kolla/config/database.conf"
|
|
- "/etc/kolla/config/messaging.conf"
|
|
- "/etc/kolla/config/nova.conf"
|
|
- "/etc/kolla/config/nova/{{ item }}.conf"
|
|
dest: "{{ node_config_directory }}/nova-compute-fake-{{ item }}/nova.conf"
|
|
with_sequence: start=1 end={{ num_nova_fake_per_node }}
|