Add missing when statments when copying JSON files in ansible
Change-Id: I865b3f4c63520ec318c8b50f4ba60b5715d283ee Partially-Implements: blueprint replace-config-external
This commit is contained in:
parent
a83d84b383
commit
0ebb67346f
@ -101,4 +101,4 @@
|
||||
template:
|
||||
src: "roles/cinder/templates/cinder-volume.json.j2"
|
||||
dest: "{{ node_config_directory }}/cinder-volume/config.json"
|
||||
when: inventory_hostname in groups['cinder-volume']
|
||||
when: inventory_hostname in groups['cinder-volume']
|
||||
|
@ -141,6 +141,7 @@
|
||||
template:
|
||||
src: "roles/neutron/templates/neutron-server.json.j2"
|
||||
dest: "{{ node_config_directory }}/neutron-server/config.json"
|
||||
when: inventory_hostname in groups['neutron-server']
|
||||
|
||||
- name: Copying Neutron OpenVSwitch JSON configuration file
|
||||
template:
|
||||
|
@ -23,6 +23,7 @@
|
||||
template:
|
||||
src: "roles/nova/templates/nova-api.json.j2"
|
||||
dest: "{{ node_config_directory }}/nova-api/config.json"
|
||||
when: inventory_hostname in groups['nova-api']
|
||||
|
||||
- include: ../../config.yml
|
||||
vars:
|
||||
@ -48,6 +49,7 @@
|
||||
template:
|
||||
src: "roles/nova/templates/nova-conductor.json.j2"
|
||||
dest: "{{ node_config_directory }}/nova-conductor/config.json"
|
||||
when: inventory_hostname in groups['nova-conductor']
|
||||
|
||||
- include: ../../config.yml
|
||||
vars:
|
||||
@ -73,6 +75,7 @@
|
||||
template:
|
||||
src: "roles/nova/templates/nova-consoleauth.json.j2"
|
||||
dest: "{{ node_config_directory }}/nova-consoleauth/config.json"
|
||||
when: inventory_hostname in groups['nova-consoleauth']
|
||||
|
||||
- include: ../../config.yml
|
||||
vars:
|
||||
@ -98,6 +101,7 @@
|
||||
template:
|
||||
src: "roles/nova/templates/nova-scheduler.json.j2"
|
||||
dest: "{{ node_config_directory }}/nova-scheduler/config.json"
|
||||
when: inventory_hostname in groups['nova-scheduler']
|
||||
|
||||
- include: ../../config.yml
|
||||
vars:
|
||||
@ -123,6 +127,7 @@
|
||||
template:
|
||||
src: "roles/nova/templates/nova-compute.json.j2"
|
||||
dest: "{{ node_config_directory }}/nova-compute/config.json"
|
||||
when: inventory_hostname in groups['compute']
|
||||
|
||||
- include: ../../config.yml
|
||||
vars:
|
||||
@ -148,13 +153,16 @@
|
||||
template:
|
||||
src: "roles/nova/templates/nova-novncproxy.json.j2"
|
||||
dest: "{{ node_config_directory }}/nova-novncproxy/config.json"
|
||||
when: inventory_hostname in groups['nova-novncproxy']
|
||||
|
||||
- name: Ensuring config directory exists
|
||||
file:
|
||||
path: "{{ node_config_directory }}/nova-libvirt"
|
||||
state: "directory"
|
||||
when: inventory_hostname in groups['compute']
|
||||
|
||||
- name: Copying Nova Libvirt JSON configuration file
|
||||
template:
|
||||
src: "roles/nova/templates/nova-libvirt.json.j2"
|
||||
dest: "{{ node_config_directory }}/nova-libvirt/config.json"
|
||||
when: inventory_hostname in groups['compute']
|
||||
|
Loading…
Reference in New Issue
Block a user