Add node_config_directory variable to overcloud service config save playbook

This should have been added with commit
513cfe990d.
This commit is contained in:
Mark Goddard 2017-09-20 10:30:37 +01:00
parent 2d036b6afd
commit 68e2e5e1b7

View File

@ -5,10 +5,13 @@
# Override this to change the directory in which the configuration will be # Override this to change the directory in which the configuration will be
# saved. # saved.
config_save_path: "{{ lookup('env', 'PWD') ~ '/overcloud-config' }}" config_save_path: "{{ lookup('env', 'PWD') ~ '/overcloud-config' }}"
# Override this to change the directory on the remote hosts from which the
# kolla-ansible configuration will be saved.
node_config_directory: "/etc/kolla"
tasks: tasks:
- name: Find overcloud service configuration files - name: Find overcloud service configuration files
find: find:
paths: "/etc/kolla" paths: "{{ node_config_directory }}"
recurse: True recurse: True
register: find_result register: find_result