From 06e92923fa90f517d0884a6ab2d9ca478824534b Mon Sep 17 00:00:00 2001 From: ksingh7 Date: Sat, 26 Mar 2016 19:47:40 +0200 Subject: [PATCH] ceph-common: Fix for issue no. 652 ceph.conf file generation task in ceph-common role was getting failed because it ansible cant find defination of varriable mon_containerized_deployment_with_kv This fix declare mon_containerized_deployment_with_kv under ceph-common/defaults/main.yml which fixes this issue Signed-off-by: ksingh7 --- group_vars/all.sample | 4 ++++ roles/ceph-common/defaults/main.yml | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/group_vars/all.sample b/group_vars/all.sample index 4750bb2e0..baa9a077d 100644 --- a/group_vars/all.sample +++ b/group_vars/all.sample @@ -340,3 +340,7 @@ dummy: #docker: false +# Do not comment the variable mon_containerized_deployment_with_kv here. This variable is being used +# by ceph.conf.j2 template. so it should always be defined +#mon_containerized_deployment_with_kv: false + diff --git a/roles/ceph-common/defaults/main.yml b/roles/ceph-common/defaults/main.yml index 8348840f5..8ae6d686a 100644 --- a/roles/ceph-common/defaults/main.yml +++ b/roles/ceph-common/defaults/main.yml @@ -331,3 +331,7 @@ os_tuning_params: ########## docker: false + +# Do not comment the variable mon_containerized_deployment_with_kv here. This variable is being used +# by ceph.conf.j2 template. so it should always be defined +mon_containerized_deployment_with_kv: false