forked from cerc-io/stack-orchestrator
follow established naming convention
This commit is contained in:
+4
-4
@@ -2,19 +2,19 @@
|
||||
|
||||
## Clone required repositories
|
||||
```
|
||||
$ laconic-so --stack blast setup-repositories
|
||||
$ laconic-so --stack mainnet-blast setup-repositories
|
||||
```
|
||||
## Build the stack's containers
|
||||
```
|
||||
$ laconic-so --stack blast build-containers
|
||||
$ laconic-so --stack mainnet-blast build-containers
|
||||
```
|
||||
## Create a deployment of the stack
|
||||
```
|
||||
$ laconic-so --stack blast deploy init --map-ports-to-host any-same --output blast-spec.yml
|
||||
$ laconic-so --stack mainnet-blast deploy init --map-ports-to-host any-same --output blast-spec.yml
|
||||
```
|
||||
[Insert details on how to configure the stack]
|
||||
```
|
||||
$ laconic-so --stack blast deploy create --deployment-dir blast-deployment --spec-file blast-spec.yml
|
||||
$ laconic-so --stack mainnet-blast deploy create --deployment-dir blast-deployment --spec-file blast-spec.yml
|
||||
```
|
||||
## Start the stack
|
||||
```
|
||||
+3
-3
@@ -32,9 +32,9 @@ def create(context, extra_args):
|
||||
deploy_dir = context.deployment_dir.joinpath(mount_point)
|
||||
|
||||
command_context = extra_args[2]
|
||||
compose_file = [f for f in command_context.cluster_context.compose_files if "blast" in f][0]
|
||||
source_config_file = Path(compose_file).parent.parent.joinpath("config", "blast", "genesis.json")
|
||||
compose_file = [f for f in command_context.cluster_context.compose_files if "mainnet-blast" in f][0]
|
||||
source_config_file = Path(compose_file).parent.parent.joinpath("config", "mainnet-blast", "genesis.json")
|
||||
copy(source_config_file, deploy_dir)
|
||||
source_config_file = Path(compose_file).parent.parent.joinpath("config", "blast", "rollup.json")
|
||||
source_config_file = Path(compose_file).parent.parent.joinpath("config", "mainnet-blast", "rollup.json")
|
||||
copy(source_config_file, deploy_dir)
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
version: "1.0"
|
||||
name: blast
|
||||
name: mainnet-blast
|
||||
description: "A blast stack"
|
||||
repos:
|
||||
- github.com/blast-io/blast
|
||||
@@ -14,5 +14,5 @@ containers:
|
||||
- cerc/lighthouse
|
||||
- cerc/lighthouse-cli
|
||||
pods:
|
||||
- blast
|
||||
- mainnet-blast
|
||||
- mainnet-eth-keycloak
|
||||
Reference in New Issue
Block a user