Skip to content
Snippets Groups Projects
Commit d66eaf65 authored by Jenkins's avatar Jenkins Committed by Gerrit Code Review
Browse files

Merge "Add missing when statments when copying JSON files in ansible"

parents 07506e4d 0ebb6734
No related branches found
No related tags found
No related merge requests found
......@@ -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']
\ No newline at end of file
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']
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment