vultr / vultr-csi

Container Storage Interface (CSI) Driver for Vultr Block Storage
Apache License 2.0
40 stars 17 forks source link

[BUG] - Many charts fail due to PVC creation minimum size issues #50

Closed sjdrc closed 3 years ago

sjdrc commented 3 years ago

Describe the bug Many charts attempt to create PVCs with a size of less than 10GiB. This will fail because Vultr does not support smaller volumes than this.

To Reproduce Steps to reproduce the behavior:

  1. Deploy the gitlab/gitlab chart
  2. Postgres, Redis, and Prometheus fail to start as the PVCs can't be created

Expected behavior Deploying charts should work out of the box

Screenshots If applicable, add screenshots to help explain your problem.

Desktop (please complete the following information where applicable:

Additional context I understand that this is not a bug with the CSI, but I am posting it here as it took me a while to figure out what was wrong.

ddymko commented 3 years ago

@sjdrc

This is correct the minimum size requirement for Vultr Block storage is 10GiB. You will have to modify the charts to use 10GiB instead of the 1 they have predefined

sjdrc commented 3 years ago

Alright, thanks.