mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-19 02:01:02 +02:00
Fix k8s validation
This commit is contained in:
parent
bf32118e6c
commit
dde52ba6a3
9 changed files with 134 additions and 61 deletions
|
|
@ -26,7 +26,7 @@ local images = import "values/images.jsonnet";
|
|||
|
||||
local service =
|
||||
engine.service(containerSet)
|
||||
.with_port(9042, 9042);
|
||||
.with_port(9042, 9042, "api");
|
||||
|
||||
engine.resources([
|
||||
vol,
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ local images = import "values/images.jsonnet";
|
|||
|
||||
local service =
|
||||
engine.service(containerSet)
|
||||
.with_port(2379, 2379);
|
||||
.with_port(2379, 2379, "api");
|
||||
|
||||
engine.resources([
|
||||
vol,
|
||||
|
|
@ -78,7 +78,7 @@ local images = import "values/images.jsonnet";
|
|||
|
||||
local service =
|
||||
engine.service(containerSet)
|
||||
.with_port(9001, 9001);
|
||||
.with_port(9001, 9001, "api");
|
||||
|
||||
engine.resources([
|
||||
vol,
|
||||
|
|
@ -116,8 +116,8 @@ local images = import "values/images.jsonnet";
|
|||
|
||||
local service =
|
||||
engine.service(containerSet)
|
||||
.with_port(9091, 9091)
|
||||
.with_port(19530, 19530);
|
||||
.with_port(9091, 9091, "api")
|
||||
.with_port(19530, 19530, "api2);
|
||||
|
||||
engine.resources([
|
||||
vol,
|
||||
|
|
|
|||
|
|
@ -28,10 +28,16 @@ local images = import "values/images.jsonnet";
|
|||
"neo4j", [ container ]
|
||||
);
|
||||
|
||||
local service =
|
||||
engine.service(containerSet)
|
||||
.with_port(7474, 7474, "api")
|
||||
.with_port(7687, 7687, "api2);
|
||||
|
||||
engine.resources([
|
||||
vol,
|
||||
containerSet,
|
||||
])
|
||||
service,
|
||||
])
|
||||
|
||||
},
|
||||
|
||||
|
|
|
|||
|
|
@ -22,9 +22,15 @@ local images = import "values/images.jsonnet";
|
|||
"qdrant", [ container ]
|
||||
);
|
||||
|
||||
local service =
|
||||
engine.service(containerSet)
|
||||
.with_port(6333, 6333, "api")
|
||||
.with_port(6334, 6334, "api2");
|
||||
|
||||
engine.resources([
|
||||
vol,
|
||||
containerSet,
|
||||
service,
|
||||
])
|
||||
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue