--- # Copyright 2019 Nokia # 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: make partition table parted: device={{ item }} number={{ partition_number }} label=gpt state=present with_items: "{{ instance_disks }}" - name: Inform the OS of partition table changes shell: "/sbin/partprobe {{ item }}" args: creates: /etc/storage/nova-instances with_items: "{{ instance_disks }}" - name: set Linux LVM type to partition 1 shell: "[ -b {{ item }} ] | parted {{ item }} set 1 lvm on" args: creates: /etc/storage/nova-instances with_items: "{{ instance_disks }}"