mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-05-06 05:42:36 +02:00
Catch llm errors (#38)
* Catch 'null' output from prompt for some values, presumably this is caused by an upstream LLM error. * Bump version
This commit is contained in:
parent
cea8562ecf
commit
acd60e95ec
20 changed files with 230 additions and 223 deletions
2
Makefile
2
Makefile
|
|
@ -1,6 +1,6 @@
|
||||||
|
|
||||||
# VERSION=$(shell git describe | sed 's/^v//')
|
# VERSION=$(shell git describe | sed 's/^v//')
|
||||||
VERSION=0.7.13
|
VERSION=0.7.14
|
||||||
|
|
||||||
DOCKER=podman
|
DOCKER=podman
|
||||||
|
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -4,7 +4,7 @@ import os
|
||||||
with open("README.md", "r") as fh:
|
with open("README.md", "r") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
version = "0.7.13"
|
version = "0.7.14"
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="trustgraph",
|
name="trustgraph",
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -50,7 +50,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -155,7 +155,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -170,7 +170,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -232,7 +232,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -280,7 +280,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -316,7 +316,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -369,7 +369,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -386,7 +386,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -403,7 +403,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -420,7 +420,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -443,7 +443,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -470,7 +470,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -485,7 +485,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"cassandra": {}
|
"cassandra": {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -281,7 +281,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -317,7 +317,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -370,7 +370,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -387,7 +387,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -404,7 +404,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -421,7 +421,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -444,7 +444,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -471,7 +471,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -486,7 +486,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -50,7 +50,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -155,7 +155,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -170,7 +170,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -232,7 +232,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -280,7 +280,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -316,7 +316,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -369,7 +369,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -386,7 +386,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -403,7 +403,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -420,7 +420,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -447,7 +447,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -478,7 +478,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -493,7 +493,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"cassandra": {}
|
"cassandra": {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -281,7 +281,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -317,7 +317,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -370,7 +370,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -387,7 +387,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -404,7 +404,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -421,7 +421,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -448,7 +448,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -479,7 +479,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -494,7 +494,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -50,7 +50,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -155,7 +155,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -170,7 +170,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -232,7 +232,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -280,7 +280,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -316,7 +316,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -369,7 +369,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -386,7 +386,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -403,7 +403,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -420,7 +420,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -441,7 +441,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -466,7 +466,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -481,7 +481,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"cassandra": {}
|
"cassandra": {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -281,7 +281,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -317,7 +317,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -370,7 +370,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -387,7 +387,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -404,7 +404,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -421,7 +421,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -442,7 +442,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -467,7 +467,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -482,7 +482,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -50,7 +50,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -155,7 +155,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -170,7 +170,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -232,7 +232,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -280,7 +280,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -316,7 +316,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -369,7 +369,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -386,7 +386,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -403,7 +403,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -420,7 +420,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -439,7 +439,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -462,7 +462,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -477,7 +477,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"cassandra": {}
|
"cassandra": {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -281,7 +281,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -317,7 +317,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -370,7 +370,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -387,7 +387,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -404,7 +404,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -421,7 +421,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -440,7 +440,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -463,7 +463,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -478,7 +478,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -50,7 +50,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -155,7 +155,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -170,7 +170,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -232,7 +232,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -267,7 +267,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -290,7 +290,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -343,7 +343,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -360,7 +360,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -377,7 +377,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -394,7 +394,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -413,7 +413,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -436,7 +436,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -451,7 +451,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"cassandra": {}
|
"cassandra": {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -268,7 +268,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -291,7 +291,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -344,7 +344,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -361,7 +361,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -378,7 +378,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -395,7 +395,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -414,7 +414,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -437,7 +437,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -452,7 +452,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -50,7 +50,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -155,7 +155,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -170,7 +170,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -232,7 +232,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -280,7 +280,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -316,7 +316,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -369,7 +369,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -386,7 +386,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -403,7 +403,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -420,7 +420,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -441,7 +441,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -466,7 +466,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -481,7 +481,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"cassandra": {}
|
"cassandra": {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -281,7 +281,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -317,7 +317,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -370,7 +370,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -387,7 +387,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -404,7 +404,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -421,7 +421,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -442,7 +442,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion-rag":
|
"text-completion-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -467,7 +467,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"vectorize":
|
"vectorize":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -482,7 +482,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -50,7 +50,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -122,7 +122,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -155,7 +155,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -170,7 +170,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -232,7 +232,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -280,7 +280,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -316,7 +316,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -369,7 +369,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -386,7 +386,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -403,7 +403,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -420,7 +420,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -443,7 +443,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "./vertexai:/vertexai"
|
- "./vertexai:/vertexai"
|
||||||
|
|
@ -472,7 +472,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "./vertexai:/vertexai"
|
- "./vertexai:/vertexai"
|
||||||
|
|
@ -489,7 +489,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"cassandra": {}
|
"cassandra": {}
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"embeddings":
|
"embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -33,7 +33,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "256M"
|
"memory": "256M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"etcd":
|
"etcd":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -105,7 +105,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"init-pulsar":
|
"init-pulsar":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -138,7 +138,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"kg-extract-relationships":
|
"kg-extract-relationships":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -153,7 +153,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"milvus":
|
"milvus":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -233,7 +233,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prometheus":
|
"prometheus":
|
||||||
"deploy":
|
"deploy":
|
||||||
|
|
@ -281,7 +281,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"prompt-rag":
|
"prompt-rag":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -317,7 +317,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"pulsar":
|
"pulsar":
|
||||||
"command": "bin/pulsar standalone"
|
"command": "bin/pulsar standalone"
|
||||||
|
|
@ -370,7 +370,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -387,7 +387,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -404,7 +404,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -421,7 +421,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"text-completion":
|
"text-completion":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -444,7 +444,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "./vertexai:/vertexai"
|
- "./vertexai:/vertexai"
|
||||||
|
|
@ -473,7 +473,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
- "./vertexai:/vertexai"
|
- "./vertexai:/vertexai"
|
||||||
|
|
@ -490,7 +490,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.5"
|
"cpus": "0.5"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
|
|
@ -195,7 +195,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -212,7 +212,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "512M"
|
"memory": "512M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -229,7 +229,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -246,7 +246,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"cassandra": {}
|
"cassandra": {}
|
||||||
|
|
|
||||||
|
|
@ -196,7 +196,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"query-triples":
|
"query-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -213,7 +213,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-graph-embeddings":
|
"store-graph-embeddings":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -230,7 +230,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"store-triples":
|
"store-triples":
|
||||||
"command":
|
"command":
|
||||||
|
|
@ -247,7 +247,7 @@
|
||||||
"reservations":
|
"reservations":
|
||||||
"cpus": "0.1"
|
"cpus": "0.1"
|
||||||
"memory": "128M"
|
"memory": "128M"
|
||||||
"image": "docker.io/trustgraph/trustgraph-flow:0.7.13"
|
"image": "docker.io/trustgraph/trustgraph-flow:0.7.14"
|
||||||
"restart": "on-failure:100"
|
"restart": "on-failure:100"
|
||||||
"volumes":
|
"volumes":
|
||||||
"etcd": {}
|
"etcd": {}
|
||||||
|
|
|
||||||
|
|
@ -87,14 +87,17 @@ class Processor(ConsumerProducer):
|
||||||
|
|
||||||
for defn in defs:
|
for defn in defs:
|
||||||
|
|
||||||
|
if s == "": continue
|
||||||
|
if o == "": continue
|
||||||
|
|
||||||
|
if s is None: continue
|
||||||
|
if o is None: continue
|
||||||
|
|
||||||
s = defn.name
|
s = defn.name
|
||||||
s_uri = self.to_uri(s)
|
s_uri = self.to_uri(s)
|
||||||
|
|
||||||
o = defn.definition
|
o = defn.definition
|
||||||
|
|
||||||
if s == "": continue
|
|
||||||
if o == "": continue
|
|
||||||
|
|
||||||
s_value = Value(value=str(s_uri), is_uri=True)
|
s_value = Value(value=str(s_uri), is_uri=True)
|
||||||
o_value = Value(value=str(o), is_uri=False)
|
o_value = Value(value=str(o), is_uri=False)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -122,6 +122,10 @@ class Processor(ConsumerProducer):
|
||||||
if p == "": continue
|
if p == "": continue
|
||||||
if o == "": continue
|
if o == "": continue
|
||||||
|
|
||||||
|
if s is None: continue
|
||||||
|
if p is None: continue
|
||||||
|
if o is None: continue
|
||||||
|
|
||||||
s_uri = self.to_uri(s)
|
s_uri = self.to_uri(s)
|
||||||
s_value = Value(value=str(s_uri), is_uri=True)
|
s_value = Value(value=str(s_uri), is_uri=True)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue