mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-16 16:51:02 +02:00
Fix incorrectly specified ports
This commit is contained in:
parent
1e78f39a26
commit
fd25d1bb11
1 changed files with 5 additions and 2 deletions
|
|
@ -156,7 +156,9 @@ local url = import "values/url.jsonnet";
|
||||||
// Zookeeper service
|
// Zookeeper service
|
||||||
local zkService =
|
local zkService =
|
||||||
engine.service(zkContainerSet)
|
engine.service(zkContainerSet)
|
||||||
.with_port(2181, 2181, "zookeeper");
|
.with_port(2181, 2181, "zookeeper")
|
||||||
|
.with_port(2888, 2888, "zookeeper2")
|
||||||
|
.with_port(3888, 3888, "zookeeper3");
|
||||||
|
|
||||||
// Bookkeeper service
|
// Bookkeeper service
|
||||||
local bookieService =
|
local bookieService =
|
||||||
|
|
@ -166,7 +168,8 @@ local url = import "values/url.jsonnet";
|
||||||
// Pulsar broker service
|
// Pulsar broker service
|
||||||
local brokerService =
|
local brokerService =
|
||||||
engine.service(brokerContainerSet)
|
engine.service(brokerContainerSet)
|
||||||
.with_port(8080, 8080, "broker");
|
.with_port(6650, 6650, "pulsar")
|
||||||
|
.with_port(8080, 8080, "admin");
|
||||||
|
|
||||||
engine.resources([
|
engine.resources([
|
||||||
zkVolume,
|
zkVolume,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue