guest_config_minidisks would conflict when called more than one time
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
zVM Cloud Connector |
Confirmed
|
Medium
|
nafeiyang |
Bug Description
guest_config_
Current code would each time use root_vdev+1 as the first disk and /mnt/ephemaral0 as the first mount point. So when the guest_config_
def process_
'''Generate and punch the scripts used to process additional disk into
target vm's reader.
'''
for idx, disk in enumerate(
vdev = disk.get('vdev') or self.generate_
fmt = disk.get('format')
From users' perspective, I think this is unreasonable.
Changed in python-zvm-sdk: | |
assignee: | nobody → nafeiyang (nafeiy) |
Changed in python-zvm-sdk: | |
importance: | Undecided → Medium |
Changed in python-zvm-sdk: | |
status: | New → Triaged |
Changed in python-zvm-sdk: | |
status: | Fix Committed → Confirmed |
It's from openstack driver's requirement that we can't specify the vdev as required, since openstack driver doesn't know the vdev of ephemeral disk, it just know the format.
We can update doc to recommend customer to specify the vdev, format and mountpoint explicitly, since if customer want to configure these disk, he already the info for the disk he want to configure. Will update doc for it.