Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.6 KB

lvm_thin_pool_meta_data.md

File metadata and controls

32 lines (23 loc) · 1.6 KB

lvm_thin_pool_meta_data

Back to resource list

Manages LVM thin pool metadata size.

Actions

Action Description
:resize Resize an existing thin pool metadata volume (resizing only handles extending existing, this action will not shrink volumes due to the lvextend command being passed

Properties

Name Type Default Description
name String name property Name of the thin pool metadata volume
group String (required) Name of volume group in which thin pool metadata volume exist
pool String (required) Name of thin pool volume in which thin pool metadata volume exist
size String (required) Size of the thin pool metadata volume, including units (k, K, m, M, g, G, t, T)

Examples

lvm_thin_pool_meta_data 'lv-thin-pool_tmeta' do
  group       'vg00'
  pool        'lv-thin-pool'
  size        '2M'
  action      :resize
end