Increase resources (#133)

This commit is contained in:
cybermaggedon 2024-10-31 16:31:57 +00:00 committed by GitHub
parent 9ebfe0d94a
commit 614e49997d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -12,8 +12,8 @@ local images = import "values/images.jsonnet";
local container =
engine.container("qdrant")
.with_image(images.qdrant)
.with_limits("1.0", "256M")
.with_reservations("0.5", "256M")
.with_limits("1.0", "1024M")
.with_reservations("0.5", "1024M")
.with_port(6333, 6333, "api")
.with_port(6334, 6334, "api2")
.with_volume_mount(vol, "/qdrant/storage");