Skip to content

Commit

Permalink
Merge pull request #70 from trustgraph-ai/dev
Browse files Browse the repository at this point in the history
Bring in 0.17 templates
  • Loading branch information
JackColquitt authored Dec 12, 2024
2 parents c44fa12 + bc7ec63 commit 59f9fe8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/components/memgraph.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ memgraph + {
engine.container("store-triples")
.with_image(images.trustgraph)
.with_command([
"triples-write-neo4j",
"triples-write-memgraph",
"-p",
url.pulsar,
"-g",
Expand Down Expand Up @@ -50,7 +50,7 @@ memgraph + {
engine.container("query-triples")
.with_image(images.trustgraph)
.with_command([
"triples-query-neo4j",
"triples-query-memgraph",
"-p",
url.pulsar,
"-g",
Expand Down
3 changes: 3 additions & 0 deletions templates/stores/memgraph.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ local images = import "values/images.jsonnet";
local container =
engine.container("memgraph")
.with_image(images.memgraph_mage)
.with_environment({
MEMGRAPH: "--storage-properties-on-edges=true --storage-enable-edges-metadata=true"
})
.with_limits("1.0", "1000M")
.with_reservations("0.5", "1000M")
.with_port(7474, 7474, "api")
Expand Down

0 comments on commit 59f9fe8

Please sign in to comment.