Yi Zhang

Results 63 comments of Yi Zhang

And as you said, it should be one future enhancement(TBD), how about keep this issue to track this feature.

And mkfs.ntfs on the entire disk will be failed if no "-K" provided. ``` [root@storageqe-62 storage]# mkfs.ntfs /dev/sdc /dev/sdc is entire device, not just one partition. Refusing to make a...

Found another interesting thing, with bellow playbook, the first task will created one partition with the entire disk[1], and the second task will remove the encryption layer and creat one...

> The two times' lsblk ouput: > > ``` > #lsblk > "stdout_lines": [ > "NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT", > "sdb 8:16 0 279.4G 0 disk ",...

This case is to cover logical size up to 254 times the size of the physical volume ``` https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/8/html/deduplicating_and_compressing_logical_volumes_on_rhel/creating-a-deduplicated-and-compressed-logical-volume_deduplicating-and-compressing-logical-volumes Logical Size This is the provisioned size that the VDO LV...

This still can be reproduced: playbook ``` --- - hosts: all become: true vars: storage_safe_mode: false mount_location: '/opt/test1' volume_group_size: '10g' volume_size: '9g' pool_size: '20g' small_pool_size: '8g' invalid_size: 'xyz GiB' too_large_size:...

Here is the commit which seems suppot it[1], and already have some cases in tests_create_partition_volume_then_remove.yml and tests_disk_errors.yml[2] [1] b3ee952 Fix key for partition pool class lookup. [2] ``` $ cat...

From the log, seems it's due to the "size:" paramter for partition ansible/modules/blivet.py\", line 461, in _create\nAttributeError: 'DiskDevice' object has no attribute 'free_space'\n"

Also failed when I use one 280GB disk: ``` [root@storageqe-62 storage]# lsblk NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINT sda 8:0 0 279.4G 0 disk ├─sda1 8:1 0 600M 0...

> Blivet currently limits swap size to 128 GiB, see [storaged-project/blivet#850](https://github.com/storaged-project/blivet/pull/850) and https://bugzilla.redhat.com/show_bug.cgi?id=1656485 So it's one limitation from Blivet, thanks for the info.