Skip to content

Commit

Permalink
Increase resources (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
cybermaggedon authored Oct 31, 2024
1 parent 9ebfe0d commit 614e499
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions templates/stores/cassandra.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ local images = import "values/images.jsonnet";
engine.container("cassandra")
.with_image(images.cassandra)
.with_environment({
JVM_OPTS: "-Xms256M -Xmx256M",
JVM_OPTS: "-Xms300M -Xmx300M",
})
.with_limits("1.0", "800M")
.with_reservations("0.5", "800M")
.with_limits("1.0", "1000M")
.with_reservations("0.5", "1000M")
.with_port(9042, 9042, "cassandra")
.with_volume_mount(vol, "/var/lib/cassandra");

Expand Down
4 changes: 2 additions & 2 deletions templates/stores/qdrant.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 614e499

Please sign in to comment.