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
chunkSize:="960"// Cannot use default chunk size(64KiB) as it errors on maxChunksAllowed. Unit - KiB
167
-
klog.V(2).Infof("============================== fastCacheSize is %v ==============================", fastCacheSize)
167
+
klog.V(2).Infof("============================== fastCacheSize is %v GiB ==============================", fastCacheSize)
168
168
klog.V(2).Infof("============================== lvcreate fast cache layer again with the VolumeGroup %v==============================", volumeGroupName)
169
169
args= []string{
170
170
"--yes",
171
171
"-n",
172
172
cacheLvName,
173
173
"-L",
174
-
fastCacheSize,
174
+
// ConvertGiStringToInt64 converts the input size to GiB so default to "g" for cache size - LVM g|G is GiB.
0 commit comments