You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During manual creation of PVs, VGs and thin pools. gdeploy was failing until size was added to the thinpool sections. The docs indicate that the size option should be optional.
The text was updated successfully, but these errors were encountered:
I looked some more tonight... If the thinpool does not have a size given, it will use the maximum size allowed by the VG. However, the thinlv must have a "virtualsize" parameter given. This seems strange because the code seems to want to allow it to be optional (which would be very convenient!)
modules/lv.py on lines 231-232
lvcreate['virtualsize'] = self.module.params[
'virtualsize'] or (str(self.poolsize_compute()) + 'K')
but it's prevented because of gdeployfeatures/lv/lv.py on lines 93-95
if not (vgname and lvname and poolname and virtualsize):
msg = "Error: Provide vgname, lvname, poolname, virtualsize to "\
"create thin lv"
During manual creation of PVs, VGs and thin pools. gdeploy was failing until size was added to the thinpool sections. The docs indicate that the size option should be optional.
The text was updated successfully, but these errors were encountered: