--- # 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. ## Verbosity Options debug: False root_disk: "{{ by_path_disks['os'] }}" all_disk_size_for_volume_group_vg: "1" root_disk_free_size: "{{ root_disk_info.disk.size|float - sys_part.end|float }}" lvm_part_size: "{{ root_disk_free_size|float * rootdisk_vg_percentage|float }}" lvm_part_number: "{{ sys_part_number|int + 1 }}" lvm_part_start: "{{ sys_part.end }}" lvm_part_end: "{{ lvm_part_start|float + lvm_part_size|float }}" instance_part_number: "{{ sys_part_number|int + 2 }}" instance_part_start: "{{ lvm_part_end }}"