我最近遵循了在Kubernetes上设置Heketi的官方指南。一切正常,但每当我创建一个小于2GB的驱动器时,它会自动创建一个2GB的PV。我无法找到任何关于他的行为的文档。任何人都可以请我理解这种行为吗?
答案 0 :(得分:0)
Heketi创建的最小卷大小为1GB。
heketi(当前)所遵循的单位是以GB为单位,因此,例如,当您创建大小为1.8GB的卷时,它会创建2GB的卷。
答案 1 :(得分:0)
https://github.com/heketi/heketi/blob/master/docs/api/api.md#create-a-volume 创建卷
Method: POST
Endpoint:/volumes
Content-Type: application/json
Response HTTP Status Code: 202, See Asynchronous Operations
Temporary Resource Response HTTP Status Code: 303, Location header will contain /volumes/{id}. See Volume Info for JSON response.
JSON Request:
**size: int, Size of volume requested in GiB**