We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm currently using juicefs over a Minio cluster in the context of Nomad orchestration.
When declaring the volume like this :
type = "csi" id = "prometheus-volume" name = "prometheus-volume" namespace = "demo-services" capability { access_mode = "multi-node-multi-writer" attachment_mode = "file-system" } plugin_id = "juicefs0" secrets { name = "juicefs-volume" metaurl = "postgres://juicefs_user:[email protected]:5432/juicefs?sslmode=disable" bucket = "http://127.0.0.1:9000/nomad/" storage = "minio" access-key = "my-access-key" secret-key = "my-secret-key" }
IP addresses were changed.
I get this in the quota definitions:
+------------------------------+---------+---------+------+-----------+-------+-------+ | Path | Size | Used | Use% | Inodes | IUsed | IUse% | +------------------------------+---------+---------+------+-----------+-------+-------+ | /prometheus-volume | 1.0 GiB | 297 MiB | 28% | unlimited | 94 | | +------------------------------+---------+---------+------+-----------+-------+-------+
I thought that no quota would be applied as capacity_min and capacity_max are optional parameters.
Environment:
The text was updated successfully, but these errors were encountered:
Moreover, I finally seen something which might be a bug.
When adding capacity_min = "1GiB" , I get a quota of 1GiB. When adding capacity_max = "10GiB", I still get a quota of 1GiB.
capacity_min = "1GiB"
capacity_max = "10GiB"
But if I remove capacity_min = "1GiB" and leave capacity_max = "10GiB" alone, there is no more quota at all.
Sorry, something went wrong.
CSI does not support min/max capacity settings
follow nomad docs, you should set capacity_min and capacity_max to the same value
https://developer.hashicorp.com/nomad/docs/other-specifications/volume#capacity_min
No branches or pull requests
I'm currently using juicefs over a Minio cluster in the context of Nomad orchestration.
When declaring the volume like this :
IP addresses were changed.
I get this in the quota definitions:
I thought that no quota would be applied as capacity_min and capacity_max are optional parameters.
Environment:
The text was updated successfully, but these errors were encountered: