Note: This bug is displayed in read-only format because
the product is no longer active in Red Hat Bugzilla.
RHEL Engineering is moving the tracking of its product development work on RHEL 6 through RHEL 9 to Red Hat Jira (issues.redhat.com). If you're a Red Hat customer, please continue to file support cases via the Red Hat customer portal. If you're not, please head to the "RHEL project" in Red Hat Jira and file new tickets here. Individual Bugzilla bugs in the statuses "NEW", "ASSIGNED", and "POST" are being migrated throughout September 2023. Bugs of Red Hat partners with an assigned Engineering Partner Manager (EPM) are migrated in late September as per pre-agreed dates. Bugs against components "kernel", "kernel-rt", and "kpatch" are only migrated if still in "NEW" or "ASSIGNED". If you cannot log in to RH Jira, please consult article #7032570. That failing, please send an e-mail to the RH Jira admins at rh-issues@redhat.com to troubleshoot your issue as a user management inquiry. The email creates a ServiceNow ticket with Red Hat. Individual Bugzilla bugs that are migrated will be moved to status "CLOSED", resolution "MIGRATED", and set with "MigratedToJIRA" in "Keywords". The link to the successor Jira issue will be found under "Links", have a little "two-footprint" icon next to it, and direct you to the "RHEL project" in Red Hat Jira (issue links are of type "https://issues.redhat.com/browse/RHEL-XXXX", where "X" is a digit). This same link will be available in a blue banner at the top of the page informing you that that bug has been migrated.
Descriptionguazhang@redhat.com
2022-01-24 02:13:28 UTC
Description of problem:
install upstream ansible version then run the storage role testing, then found the var "_storage_test_pool_pvs" get wrong data type, please help to check
Version-Release number of selected component (if applicable):
How reproducible:
Steps to Reproduce:
1. git clone https://github.com/ansible/ansible.git
2. python3 setup.py install
3. echo "localhost ansible_connection=local" > host
5. ansible-playbook -vv -i host tests_create_lvm_cache_then_remove.yml
Actual results:
get error
Expected results:
no error
Additional info:
TASK [Check the type of each PV] *******************************************************************************************************
task path: /usr/share/ansible/roles/rhel-system-roles.storage/tests/test-verify-pool-members.yml:46
fatal: [localhost]: FAILED! => {"msg": "Invalid data passed to 'loop', it requires a list, got this instead: [] + [ '/dev/nvme1n1p1' ] + [ '/dev/nvme4n1p1' ]. Hint: If you passed a list/dict of just one element, try adding wantlist=True to your lookup invocation or use q/query instead of lookup."}
PLAY RECAP *****************************************************************************************************************************
localhost : ok=52 changed=2 unreachable=0 failed=1 skipped=29 rescued=0 ignored=0
[root@storageqe-70 tests]# lsblk
NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS
sda 8:0 0 223G 0 disk
├─sda1 8:1 0 600M 0 part /boot/efi
├─sda2 8:2 0 1G 0 part /boot
└─sda3 8:3 0 221.4G 0 part
├─rhel_storageqe--70-root 253:0 0 70G 0 lvm /
├─rhel_storageqe--70-swap 253:1 0 7.6G 0 lvm [SWAP]
└─rhel_storageqe--70-home 253:2 0 143.8G 0 lvm /home
nvme1n1 259:0 0 894.3G 0 disk
└─nvme1n1p1 259:7 0 894.3G 0 part
└─foo-test_corig 253:6 0 5G 0 lvm
└─foo-test 253:3 0 5G 0 lvm
nvme4n1 259:1 0 894.3G 0 disk
└─nvme4n1p1 259:6 0 894.3G 0 part
├─foo-test_cache_cpool_cdata 253:4 0 4G 0 lvm
│ └─foo-test 253:3 0 5G 0 lvm
└─foo-test_cache_cpool_cmeta 253:5 0 8M 0 lvm
└─foo-test 253:3 0 5G 0 lvm
nvme2n1 259:2 0 894.3G 0 disk
nvme3n1 259:3 0 894.3G 0 disk
nvme0n1 259:4 0 894.3G 0 disk
[root@storageqe-70 tests]# lsscsi
[0:2:0:0] disk DELL PERC H330 Mini 4.30 /dev/sda
[N:0:1:1] disk Dell Express Flash CD5 960G SFF__1 /dev/nvme0n1
[N:1:4:1] disk Samsung SSD 983 DCT 960GB__1 /dev/nvme1n1
[N:2:4:1] disk Samsung SSD 983 DCT 960GB__1 /dev/nvme2n1
[N:3:1:1] disk Dell Express Flash CD5 960G SFF__1 /dev/nvme3n1
[N:4:4:1] disk Samsung SSD 983 DCT 960GB__1 /dev/nvme4n1
upstream ansible version
ansible --version
[WARNING]: You are running the development version of Ansible. You should only run Ansible from "devel" if you are modifying the
Ansible engine, or trying out features under development. This is a rapidly changing source of code and can become unstable at any
point.
ansible [core 2.13.0.dev0]
config file = /etc/ansible/ansible.cfg
configured module search path = ['/root/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
ansible python module location = /usr/local/lib/python3.9/site-packages/ansible_core-2.12.1-py3.9.egg/ansible
ansible collection location = /root/.ansible/collections:/usr/share/ansible/collections
executable location = /usr/local/bin/ansible
python version = 3.9.9 (main, Jan 8 2022, 00:00:00) [GCC 11.2.1 20211203 (Red Hat 11.2.1-7)]
jinja version = 3.0.3
libyaml = True
Don't hit the error
# ansible --version
ansible [core 2.12.1]
config file = /etc/ansible/ansible.cfg
configured module search path = ['/root/.ansible/plugins/modules', '/usr/share/ansible/plugins/modules']
ansible python module location = /usr/local/lib/python3.9/site-packages/ansible
ansible collection location = /root/.ansible/collections:/usr/share/ansible/collections
executable location = /usr/local/bin/ansible
python version = 3.9.9 (main, Jan 8 2022, 00:00:00) [GCC 11.2.1 20211203 (Red Hat 11.2.1-7)]
jinja version = 2.11.3
libyaml = True
The reason I ask is because it looks like this bug was introduced with this commit: https://github.com/linux-system-roles/storage/commit/1c4b709cd8aa0fc4fb19834260b1edafa3c58899
commit 1c4b709cd8aa0fc4fb19834260b1edafa3c58899
Author: David Lehman <dlehman>
Date: Tue Jun 9 14:19:12 2020 -0400
Add validation of pool members.
...
- set_fact:
_storage_test_pool_pvs: "{{ _storage_test_pool_pvs }} + [ '{{ pv_paths.results[idx].device }}' ]"
loop: "{{ _storage_test_pool_pvs_lvm }}"
loop_control:
index_var: idx
when: storage_test_pool.type == 'lvm'
This jinja code is not correct - it should be
_storage_test_pool_pvs: "{{ _storage_test_pool_pvs + [pv_paths.results[idx].device] }}"
https://bugzilla.redhat.com/show_bug.cgi?id=2016517
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.
For information on the advisory (rhel-system-roles bug fix and enhancement update), and where to find the updated
files, follow the link below.
If the solution does not work for you, open a new bug report.
https://access.redhat.com/errata/RHEA-2022:8117