Add ceph container bind mounts to group_vars

Change-Id: I051996b37d664e0c6257bda4e52488a1d6f05e03
This commit is contained in:
Ravi Kumar Boyapati 2017-03-03 14:46:28 -05:00
parent faf988ae24
commit 56f31c2b47
2 changed files with 20 additions and 3 deletions

View File

@ -25,9 +25,7 @@
dest: "/var/log/ceph"
- include: common-tasks/os-lxc-container-setup.yml
vars:
list_of_bind_mounts:
- bind_dir_path: "/var/lib/ceph"
mount_path: "/openstack/{{ inventory_hostname }}"
list_of_bind_mounts: "{{ ceph_container_bind_mounts }}"
- include: common-tasks/package-cache-proxy.yml
roles:
- role: "ceph-mon"

View File

@ -0,0 +1,19 @@
---
# Copyright 2017, Ravi Kumar Boyapati <rboyapat@gmail.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ceph default list of bind mounts
ceph_container_bind_mounts:
- bind_dir_path: "/var/lib/ceph"
mount_path: "/openstack/{{ inventory_hostname }}"