1b64f1e0e8
The setup commands won't work against a container properly - we need to
revert this and if we need to configure LVM in a container, have a
separate play.
This reverts commit da95d3e4ee
.
Change-Id: I66feb6b432ce14e78d4f96a4bd87aa8e021e08e3
52 lines
1.7 KiB
YAML
52 lines
1.7 KiB
YAML
---
|
|
# Copyright 2015, Rackspace US, Inc.
|
|
#
|
|
# 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: Prepare cinder-volumes volume group
|
|
hosts: localhost
|
|
tasks:
|
|
- name: Install lvm2 apt package
|
|
apt:
|
|
name: lvm2
|
|
when:
|
|
- ansible_pkg_mgr == 'apt'
|
|
- name: Install lvm2 yum package
|
|
yum:
|
|
name: lvm2
|
|
when:
|
|
- ansible_pkg_mgr == 'yum'
|
|
- name: Create sparse Cinder file
|
|
shell: "truncate -s 10G /openstack/cinder.img"
|
|
args:
|
|
creates: /openstack/cinder.img
|
|
register: cinder_create
|
|
- name: Get a loopback device for cinder file
|
|
shell: losetup -f
|
|
when: cinder_create | changed
|
|
register: cinder_losetup
|
|
- name: Create the loopback device
|
|
shell: "losetup {{ cinder_losetup.stdout }} /openstack/cinder.img"
|
|
when: cinder_create | changed
|
|
- name: Make LVM physical volume on the cinder device
|
|
shell: "{{ item }}"
|
|
when: cinder_create | changed
|
|
with_items:
|
|
- "pvcreate {{ cinder_losetup.stdout }}"
|
|
- "pvscan"
|
|
- name: Add cinder-volumes volume group
|
|
lvg:
|
|
vg: cinder-volumes
|
|
pvs: "{{ cinder_losetup.stdout }}"
|
|
when: cinder_create | changed
|