This is the definition of a thin pool:
{
"logicalVolumes": [
{
"size": "40 GiB"
"name": "hanalv",
"pool": true
}
]
}
It's kind of expected that changing that attribute pool
into false will turn it into a normal LV. Like this.
{
"logicalVolumes": [
{
"size": "40 GiB"
"name": "hanalv",
"pool": false
}
]
}
But that's actually invalid and the right way to do it is this:
{
"logicalVolumes": [
{
"size": "40 GiB"
"name": "hanalv"
}
]
}
Because pool
can only be true
or omitted. Cannot be set to false
.
I'm not saying is wrong, but I can see why we made the error of exporting "pool: false
".