Jammy Caracal Verification
==========================

Demonstrate broken behaviour on -updates
----------------------------------------
Nova package version on nova-compute unit

dpkg -l | grep nova
ii  nova-api-metadata                    3:29.2.0-0ubuntu1.2~cloud0             
              all          OpenStack Compute - metadata API frontend
ii  nova-common                          3:29.2.0-0ubuntu1.2~cloud0             
              all          OpenStack Compute - common files
ii  nova-compute                         3:29.2.0-0ubuntu1.2~cloud0             
              all          OpenStack Compute - compute node base
ii  nova-compute-kvm                     3:29.2.0-0ubuntu1.2~cloud0             
              all          OpenStack Compute - compute node (KVM)
ii  nova-compute-libvirt                 3:29.2.0-0ubuntu1.2~cloud0             
              all          OpenStack Compute - compute node libvirt support
ii  python3-nova                         3:29.2.0-0ubuntu1.2~cloud0             
              all          OpenStack Compute Python 3 libraries
ii  python3-novaclient                   2:18.5.0-0ubuntu1~cloud0               
              all          client library for OpenStack Compute API - 3.x

openstack volume type create lun-volumes
+-------------+--------------------------------------+
| Field       | Value                                |
+-------------+--------------------------------------+
| description | None                                 |
| id          | 33ef74c4-fd9c-4525-90ec-2ea3550d81e8 |
| is_public   | True                                 |
| name        | lun-volumes                          |
+-------------+--------------------------------------+

openstack volume type set --property volume_backend_name="LVM-default"
lun-volumes

openstack volume create --size 5 --type lun-volumes volume1
+---------------------+--------------------------------------+
| Field               | Value                                |
+---------------------+--------------------------------------+
| attachments         | []                                   |
| availability_zone   | nova                                 |
| bootable            | false                                |
| consistencygroup_id | None                                 |
| created_at          | 2026-03-06T16:52:34.269097           |
| description         | None                                 |
| encrypted           | False                                |
| id                  | 75b74dd8-b22c-44f7-9206-585df48b600b |
| migration_status    | None                                 |
| multiattach         | False                                |
| name                | volume1                              |
| properties          |                                      |
| replication_status  | None                                 |
| size                | 5                                    |
| snapshot_id         | None                                 |
| source_volid        | None                                 |
| status              | creating                             |
| type                | lun-volumes                          |
| updated_at          | None                                 |
| user_id             | 50f4dbf325684f3683edbfc7c2e66dc2     |
+---------------------+--------------------------------------+

export LUN_UUID=75b74dd8-b22c-44f7-9206-585df48b600b

openstack volume create --size 5 volume2
+---------------------+--------------------------------------+
| Field               | Value                                |
+---------------------+--------------------------------------+
| attachments         | []                                   |
| availability_zone   | nova                                 |
| bootable            | false                                |
| consistencygroup_id | None                                 |
| created_at          | 2026-03-06T16:53:12.814297           |
| description         | None                                 |
| encrypted           | False                                |
| id                  | 7d98506d-9a05-4562-ade7-bb57e40d5b0f |
| migration_status    | None                                 |
| multiattach         | False                                |
| name                | volume2                              |
| properties          |                                      |
| replication_status  | None                                 |
| size                | 5                                    |
| snapshot_id         | None                                 |
| source_volid        | None                                 |
| status              | creating                             |
| type                | __DEFAULT__                          |
| updated_at          | None                                 |
| user_id             | 50f4dbf325684f3683edbfc7c2e66dc2     |
+---------------------+--------------------------------------+

export SECOND_VOL_UUID=7d98506d-9a05-4562-ade7-bb57e40d5b0f

openstack server list
+--------------------------------------+---------+--------+----------+-------+----------+
| ID                                   | Name    | Status | Networks | Image | 
Flavor   |
+--------------------------------------+---------+--------+----------+-------+----------+
| 25c78f92-8fcd-4329-b9b5-8752b8768846 | server1 | ERROR  |          | focal | 
m1.small |
+--------------------------------------+---------+--------+----------+-------+----------+

Use -proposed
-------------
ubuntu@juju-9aadac-lunsru-8:~$ dpkg -l | grep nova
ii  nova-api-metadata                    3:29.2.0-0ubuntu1.4~cloud0             
              all          OpenStack Compute - metadata API frontend
ii  nova-common                          3:29.2.0-0ubuntu1.4~cloud0             
              all          OpenStack Compute - common files
ii  nova-compute                         3:29.2.0-0ubuntu1.4~cloud0             
              all          OpenStack Compute - compute node base
ii  nova-compute-kvm                     3:29.2.0-0ubuntu1.4~cloud0             
              all          OpenStack Compute - compute node (KVM)
ii  nova-compute-libvirt                 3:29.2.0-0ubuntu1.4~cloud0             
              all          OpenStack Compute - compute node libvirt support
ii  python3-nova                         3:29.2.0-0ubuntu1.4~cloud0             
              all          OpenStack Compute Python 3 libraries
ii  python3-novaclient                   2:18.5.0-0ubuntu1~cloud0               
              all          client library for OpenStack Compute API - 3.x

Recreate the server using the same command

openstack server list
+--------------------------------------+---------+--------+-----------------------+-------+----------+
| ID                                   | Name    | Status | Networks            
  | Image | Flavor   |
+--------------------------------------+---------+--------+-----------------------+-------+----------+
| c190a931-ab40-4e01-8cf6-938a35c3df1d | server1 | ACTIVE | 
private=192.168.21.92 | focal | m1.small |
+--------------------------------------+---------+--------+-----------------------+-------+----------+

sudo ip netns exec ovnmeta-3600dd15-bf68-4ee2-b4de-6bfa4909aaf6 ssh -i
~/testkey.priv [email protected]

lsblk
NAME    MAJ:MIN RM  SIZE RO TYPE MOUNTPOINT
loop0     7:0    0   64M  1 loop /snap/core20/2318
loop1     7:1    0 91.9M  1 loop /snap/lxd/29619
loop2     7:2    0 38.8M  1 loop /snap/snapd/21759
sda       8:0    0    5G  0 disk
vda     252:0    0   20G  0 disk
├─vda1  252:1    0 19.9G  0 part /
├─vda14 252:14   0    4M  0 part
└─vda15 252:15   0  106M  0 part /boot/efi
vdb     252:16   0    5G  0 disk

The instance boots successfully, has the LUN as /dev/sda, and the
additional volume as /dev/vdb


** Tags removed: verification-caracal-needed
** Tags added: verification-caracal-done

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/2065084

Title:
  [SRU] BDM with device_type=lun fails

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-archive/+bug/2065084/+subscriptions


-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to