3170b6c2a7
Some roles made a bad usage of the 'node_config_directory' variable. As described here: https://github.com/openstack/kolla-ansible/blob/master/ansible/group_vars/all.yml#L16 'node_config_directory' is the directory to store the config files on the destination node. This variable MUST be changed to 'node_custom_config'. Futhermore this will unified all roles. Closes-Bug: #1682445 Change-Id: Id8d8a1268c79befac8938c1e0396267314b40301
56 lines
1.9 KiB
YAML
56 lines
1.9 KiB
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 }}
|
|
notify:
|
|
- Restart nova-compute-fake containers
|
|
|
|
- name: Copying over config.json files for services
|
|
template:
|
|
src: "nova-compute.json.j2"
|
|
dest: "{{ node_config_directory }}/nova-compute-fake-{{ item }}/config.json"
|
|
with_sequence: start=1 end={{ num_nova_fake_per_node }}
|
|
notify:
|
|
- Restart nova-compute-fake containers
|
|
|
|
- name: Copying over nova.conf
|
|
merge_configs:
|
|
vars:
|
|
service_name: "{{ item }}"
|
|
sources:
|
|
- "{{ role_path }}/templates/nova.conf.j2"
|
|
- "{{ node_custom_config }}/global.conf"
|
|
- "{{ node_custom_config }}/database.conf"
|
|
- "{{ node_custom_config }}/messaging.conf"
|
|
- "{{ node_custom_config }}/nova.conf"
|
|
- "{{ node_custom_config }}/nova/{{ item }}.conf"
|
|
- "{{ node_custom_config }}/nova/{{ inventory_hostname }}/nova.conf"
|
|
dest: "{{ node_config_directory }}/nova-compute-fake-{{ item }}/nova.conf"
|
|
with_sequence: start=1 end={{ num_nova_fake_per_node }}
|
|
notify:
|
|
- Restart nova-compute-fake containers
|
|
|
|
- name: Check nova-compute-fake containers
|
|
kolla_docker:
|
|
action: "compare_container"
|
|
common_options: "{{ docker_common_options }}"
|
|
name: "nova_compute_fake_{{ item }}"
|
|
image: "{{ nova_compute_image_full }}"
|
|
privileged: True
|
|
volumes:
|
|
- "{{ node_config_directory }}/nova-compute-fake-{{ item }}/:{{ container_config_directory }}/:ro"
|
|
- "/etc/localtime:/etc/localtime:ro"
|
|
- "/lib/modules:/lib/modules:ro"
|
|
- "/run:/run:shared"
|
|
- "kolla_logs:/var/log/kolla/"
|
|
with_sequence: start=1 end={{ num_nova_fake_per_node }}
|
|
when:
|
|
- action != "config"
|
|
- inventory_hostname in groups['compute']
|
|
- enable_nova_fake | bool
|
|
notify:
|
|
- Restart nova-compute-fake containers
|