Skip to content

Commit

Permalink
feat: implement kurtosis package for mangta testnet node setup
Browse files Browse the repository at this point in the history
  • Loading branch information
abhiyana committed Nov 9, 2023
1 parent 7ae93b3 commit 072e60e
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions parachain/testnet-setup/mangta.star
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
def run_mangata(plan):
exec_command = [
"--chain=rococo",
"--collator",
"--rpc-external",
"--rpc-cors=all",
"--rpc-methods=unsafe",
"--unsafe-ws-external",
"--tmp"
]
mangata_service_config = ServiceConfig(
image = "mangatasolutions/mangata-node:ci-e2e-jobs-fix-MGX-785-fast",
files = {
"/app": "configs",
},
ports = {
"ws": PortSpec(9944, transport_protocol = "TCP"),
"tcp": PortSpec(9933, transport_protocol = "TCP"),
},
cmd = exec_command,
entrypoint = ["/mangata/node"]
)
plan.add_service(name = "mangata-node", config = mangata_service_config)

0 comments on commit 072e60e

Please sign in to comment.