Logan V f4cbb21093 Set ceph_mons in group_vars
ceph_mons is used by the OSA ceph_client role, since it does not
support consuming the list of mons from a group name which is what
upstream ceph-ansible uses. So we will generate the list of mons
using the group name and prepare it for ceph_client.

This defaults the configuration to use the integrated ceph-ansible
managed ceph cluster deployment in OSA. However, if the OSA deployer
is using an externally managed cluster, they should still be able
to override ceph_mons in user_variables.

Change-Id: Ida44228c2d2919990bac46936317b6093d3ff115
2017-09-14 20:51:17 +00:00

73 lines
2.3 KiB
YAML

---
# Copyright 2016, Logan Vig <logan2211@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.
- name: Create sparse ceph OSD files
command: truncate -s {{ bootstrap_host_loopback_ceph_size }}G /openstack/{{ item }}.img
args:
creates: "/openstack/{{ item }}.img"
with_items: "{{ ceph_osd_images }}"
register: ceph_create
changed_when: false
tags:
- ceph-file-create
- name: Create the ceph loopback device
command: losetup -f /openstack/{{ item.item }}.img --show
with_items: "{{ ceph_create.results }}"
register: ceph_create_loopback
when: not item|skipped
changed_when: false
tags:
- skip_ansible_lint
- name: Ensure that rc.local exists
file:
path: "{{ rc_local }}"
state: touch
mode: "u+x"
tags:
- ceph-rc-file
- name: Create ceph loopback at boot time
lineinfile:
dest: "{{ rc_local }}"
line: "losetup -f /openstack/{{ item }}.img"
insertbefore: "{{ rc_local_insert_before }}"
with_items: "{{ ceph_osd_images }}"
# TODO(logan): Move these vars to user_variables.ceph.yml.j2 once LP #1649381
# is fixed and eliminate this task.
- name: Write ceph cluster config
copy:
content: |
---
devices: {{ ceph_create_loopback.results | map(attribute='stdout') | list | to_yaml | trim }}
cinder_backends:
"RBD":
volume_driver: cinder.volume.drivers.rbd.RBDDriver
rbd_pool: volumes
rbd_ceph_conf: /etc/ceph/ceph.conf
rbd_store_chunk_size: 8
volume_backend_name: rbddriver
rbd_user: cinder
rbd_secret_uuid: "{% raw %}{{ cinder_ceph_client_uuid }}{% endraw %}"
report_discard_supported: true
dest: /etc/openstack_deploy/user_ceph_aio.yml
force: no
become: false
when: not ceph_create_loopback|skipped
tags:
- skip_ansible_lint