2a13f189be
Resolves: RHEL-58465 - package rhel-system-roles.noarch does not provide docs for ansible-doc [rhel-8.10.z] Resolves: RHEL-58494 ad_integration - fix: Sets domain name lower case in realmd.conf section header [rhel-8.10.z] Resolves: RHEL-58917 bootloader - bootloader role tests do not work on ostree [rhel-8.10.z] Resolves: RHEL-45711 bootloader - fix: Set user.cfg path to /boot/grub2/ on EL 9 UEFI [rhel-8] Resolves: RHEL-58515 cockpit - cockpit install all wildcard match does not work in newer el9 [rhel-8.10.z] Resolves: RHEL-58485 logging - RFE - system-roles - logging: Add truncate options for local file inputs [rhel-8.10.z] Resolves: RHEL-58481 logging - redhat.rhel_system_roles.logging role fails to process logging_outputs: of type: "custom" [rhel-8.10.z] Resolves: RHEL-58477 logging - [RFE] Add the umask settings or enable a variable in linux-system-roles.logging [rhel-8.10.z] Resolves: RHEL-37550 logging - Setup imuxsock using rhel-system-roles.logging causing an error EL8 Resolves: RHEL-58519 nbde_client - feat: Allow initrd configuration to be skipped [rhel-8.10.z] Resolves: RHEL-58525 podman - fix: proper cleanup for networks; ensure cleanup of resources [rhel-8.10.z] Resolves: RHEL-58511 podman - fix: grab name of network to remove from quadlet file [rhel-8.10.z] Resolves: RHEL-58507 podman - Create podman secret when skip_existing=True and it does not exist [rhel-8.10.z] Resolves: RHEL-58503 podman - fix: do not use become for changing hostdir ownership, and expose subuid/subgid info [rhel-8.10.z] Resolves: RHEL-58498 podman - fix: use correct user for cancel linger file name [rhel-8.10.z] Resolves: RHEL-58460 podman - redhat.rhel_system_roles.podman fails to configure and run containers with podman rootless using different username and groupname. [rhel-8.10.z] Resolves: RHEL-58473 sshd - second SSHD service broken [rhel-8.10.z] Resolves: RHEL-58469 storage - rhel-system-role.storage is not idempotent [rhel-8.10.z] Resolves: RHEL-58489 timesync - System Roles: No module documentation [rhel-8.10.z] (cherry picked from commit 350d523452546e35bb0805af9ad9cc74712899d7)
35 lines
1.1 KiB
Diff
35 lines
1.1 KiB
Diff
From aa6e494963a3bded3b1ca7ef5a81e0106e68d5bc Mon Sep 17 00:00:00 2001
|
|
From: Jan Pokorny <japokorn@redhat.com>
|
|
Date: Thu, 6 Jun 2024 11:54:48 +0200
|
|
Subject: [PATCH 08/10] test: lvm pool members test fix
|
|
|
|
tests_lvm_pool_members started to fail. It tried to create a device with
|
|
a requested size (20m) that was less than minimal allowed size (300m) for that type of
|
|
volume. Role automatically resized the device to allowed size. That lead to discrepancy
|
|
in actual and expected size values.
|
|
|
|
Increasing the requested device size to be same or larger than minimal fixes the
|
|
issue.
|
|
|
|
(cherry picked from commit ee740b7b14d09e09a26dd5eb95e8950aeb15147d)
|
|
---
|
|
tests/tests_lvm_pool_members.yml | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/tests/tests_lvm_pool_members.yml b/tests/tests_lvm_pool_members.yml
|
|
index 63c10c7..320626e 100644
|
|
--- a/tests/tests_lvm_pool_members.yml
|
|
+++ b/tests/tests_lvm_pool_members.yml
|
|
@@ -6,7 +6,7 @@
|
|
storage_safe_mode: false
|
|
storage_use_partitions: true
|
|
volume_group_size: '10g'
|
|
- volume_size: '20m'
|
|
+ volume_size: '300m'
|
|
tags:
|
|
- tests::lvm
|
|
|
|
--
|
|
2.46.0
|
|
|