1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-05-03 08:52:55 +00:00

[PR #11925/d0f0e9d0 backport][stable-12] lvol: fix thin-pool creation with percentage size (#11930)

lvol: fix thin-pool creation with percentage size (#11925)

* fix(lvol): use --extents (-l) for thin-pool creation with percentage size

Fixes #11923



* chore(lvol): add changelog fragment for #11925



* test(lvol): add integration tests for thin-pool creation with percentage sizes



* test(lvol): use extent-aligned size for thin-pool absolute-size idempotency test



* test(lvol): reduce thin-pool sizes to leave space for test_pvs.yml



* test(lvol): add shrink=false to thin-pool absolute-size idempotency check



* test(lvol): add shrink: false to thin volume idempotency test

LVM reports thin volume size slightly above requested (metadata overhead),
triggering spurious shrink attempts. Disable shrink for idempotency checks
to avoid false failures.



---------


(cherry picked from commit d0f0e9d00f)

Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
patchback[bot] 2026-04-29 21:42:57 +02:00 committed by GitHub
parent 743591cedc
commit 10f4e9796d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 125 additions and 9 deletions

View file

@ -18,6 +18,8 @@
block:
- import_tasks: setup.yml
- import_tasks: test_thinpool.yml
- import_tasks: test_pvs.yml
always:

View file

@ -0,0 +1,101 @@
---
# Copyright (c) Ansible Project
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
# Regression tests for thin-pool creation with percentage-based sizes (GH-11923)
- name: Create thin pool with percentage of VG size
community.general.lvol:
vg: testvg1
thinpool: testthinpool1
size: 20%VG
register: thinpool_pct_vg_create
- name: Assert thin pool with percentage of VG created
assert:
that:
- thinpool_pct_vg_create is success
- thinpool_pct_vg_create is changed
- name: Create thin pool with percentage of VG size - idempotency
community.general.lvol:
vg: testvg1
thinpool: testthinpool1
size: 20%VG
register: thinpool_pct_vg_idempotent
- name: Assert thin pool with percentage of VG creation is idempotent
assert:
that:
- thinpool_pct_vg_idempotent is success
- thinpool_pct_vg_idempotent is not changed
- name: Create thin pool with percentage of free space
community.general.lvol:
vg: testvg2
thinpool: testthinpool2
size: 20%FREE
register: thinpool_pct_free_create
- name: Assert thin pool with percentage of free space created
assert:
that:
- thinpool_pct_free_create is success
- thinpool_pct_free_create is changed
- name: Create thin pool with absolute size
community.general.lvol:
vg: testvg2
thinpool: testthinpool3
size: 4m
register: thinpool_abs_create
- name: Assert thin pool with absolute size created
assert:
that:
- thinpool_abs_create is success
- thinpool_abs_create is changed
- name: Create thin pool with absolute size - idempotency
community.general.lvol:
vg: testvg2
thinpool: testthinpool3
size: 4m
shrink: false
register: thinpool_abs_idempotent
- name: Assert thin pool with absolute size creation is idempotent
assert:
that:
- thinpool_abs_idempotent is success
- thinpool_abs_idempotent is not changed
- name: Create thin volume inside thin pool
community.general.lvol:
vg: testvg1
lv: testthinvol1
thinpool: testthinpool1
size: 5m
register: thinvol_create
- name: Assert thin volume created
assert:
that:
- thinvol_create is success
- thinvol_create is changed
- name: Create thin volume inside thin pool - idempotency
community.general.lvol:
vg: testvg1
lv: testthinvol1
thinpool: testthinpool1
size: 5m
shrink: false
register: thinvol_idempotent
- name: Assert thin volume creation is idempotent
assert:
that:
- thinvol_idempotent is success
- thinvol_idempotent is not changed