Merge "Fix copy external ceph files from custome/gnocchi in gnocchi"

This commit is contained in:
Zuul 2018-06-15 06:51:58 +00:00 committed by Gerrit Code Review
commit f4796819e8
2 changed files with 7 additions and 2 deletions

View File

@ -11,7 +11,7 @@
- name: Copy over ceph.conf file
template:
src: "{{ node_custom_config }}/{{ item }}/ceph.conf"
src: "{{ node_custom_config }}/gnocchi/ceph.conf"
dest: "{{ node_config_directory }}/{{ item }}/ceph.conf"
when: inventory_hostname in groups[item]
with_items:
@ -25,7 +25,7 @@
- name: Copy over ceph gnocchi keyring
copy:
src: "{{ node_custom_config }}/{{ item }}/ceph.client.gnocchi.keyring"
src: "{{ node_custom_config }}/gnocchi/ceph.client.gnocchi.keyring"
dest: "{{ node_config_directory }}/{{ item }}/ceph.client.gnocchi.keyring"
when: inventory_hostname in groups[item]
with_items:

View File

@ -0,0 +1,5 @@
---
fixes:
- |
Load custom ceph.conf and keyring file from <<node_custom_config>>/gnocchi
folder rathen than each folder of gnocchi components.