Cookbooks
lvm
documentation
Lvm Thin Pool Meta Data

lvm_thin_pool_meta_data

Back to resource list

Manages LVM thin pool metadata size.

Actions

ActionDescription
:resizeResize 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

NameTypeDefaultDescription
nameStringname propertyName of the thin pool metadata volume
groupString(required) Name of volume group in which thin pool metadata volume exist
poolString(required) Name of thin pool volume in which thin pool metadata volume exist
sizeString(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