forked from cerc-io/stack-orchestrator
fixup spec
This commit is contained in:
parent
4c84896090
commit
00c1515807
73
docs/spec.md
73
docs/spec.md
@ -1,37 +1,82 @@
|
|||||||
# Spec
|
# Specification
|
||||||
|
|
||||||
TODO: update
|
|
||||||
|
|
||||||
## Implementation
|
## Implementation
|
||||||
The orchestrator's operation is driven by files shown below. `repository-list.txt` container the list of git repositories; `container-image-list.txt` contains
|
|
||||||
the list of container image names, while `clister-list.txt` specifies the set of compose components (corresponding to individual docker-compose-xxx.yml files which may in turn specify more than one container).
|
The orchestrator's operation is driven by files shown below.
|
||||||
Files required to build each container image are stored under `./container-build/<container-name>`
|
|
||||||
Files required at deploy-time are stored under `./config/<component-name>`
|
- `repository-list.txt` contains the list of git repositories;
|
||||||
|
- `container-image-list.txt` contains the list of container image names
|
||||||
|
- `pod-list.txt` specifies the set of compose components (corresponding to individual docker-compose-xxx.yml files which may in turn specify more than one container).
|
||||||
|
- `container-build/` contains the files required to build each container image
|
||||||
|
- `config/` contains the files required at deploy time
|
||||||
|
|
||||||
```
|
```
|
||||||
|
├── container-image-list.txt
|
||||||
├── pod-list.txt
|
├── pod-list.txt
|
||||||
|
├── repository-list.txt
|
||||||
├── compose
|
├── compose
|
||||||
│ ├── docker-compose-contract.yml
|
│ ├── docker-compose-contract.yml
|
||||||
│ ├── docker-compose-db-sharding.yml
|
│ ├── docker-compose-eth-probe.yml
|
||||||
│ ├── docker-compose-db.yml
|
|
||||||
│ ├── docker-compose-eth-statediff-fill-service.yml
|
│ ├── docker-compose-eth-statediff-fill-service.yml
|
||||||
|
│ ├── docker-compose-fixturenet-eth.yml
|
||||||
|
│ ├── docker-compose-fixturenet-laconicd.yml
|
||||||
│ ├── docker-compose-go-ethereum-foundry.yml
|
│ ├── docker-compose-go-ethereum-foundry.yml
|
||||||
│ ├── docker-compose-ipld-eth-beacon-db.yml
|
│ ├── docker-compose-ipld-eth-beacon-db.yml
|
||||||
│ ├── docker-compose-ipld-eth-beacon-indexer.yml
|
│ ├── docker-compose-ipld-eth-beacon-indexer.yml
|
||||||
|
│ ├── docker-compose-ipld-eth-db.yml
|
||||||
│ ├── docker-compose-ipld-eth-server.yml
|
│ ├── docker-compose-ipld-eth-server.yml
|
||||||
│ ├── docker-compose-lighthouse.yml
|
│ ├── docker-compose-keycloak.yml
|
||||||
│ └── docker-compose-prometheus-grafana.yml
|
│ ├── docker-compose-laconicd.yml
|
||||||
|
│ ├── docker-compose-prometheus-grafana.yml
|
||||||
|
│ ├── docker-compose-test.yml
|
||||||
|
│ ├── docker-compose-tx-spammer.yml
|
||||||
|
│ ├── docker-compose-watcher-erc20.yml
|
||||||
|
│ ├── docker-compose-watcher-erc721.yml
|
||||||
|
│ ├── docker-compose-watcher-mobymask.yml
|
||||||
|
│ └── docker-compose-watcher-uniswap-v3.yml
|
||||||
├── config
|
├── config
|
||||||
│ └── ipld-eth-server
|
│ ├── fixturenet-eth
|
||||||
|
│ ├── fixturenet-laconicd
|
||||||
|
│ ├── ipld-eth-beacon-indexer
|
||||||
|
│ ├── ipld-eth-server
|
||||||
|
│ ├── keycloak
|
||||||
|
│ ├── postgresql
|
||||||
|
│ ├── tx-spammer
|
||||||
|
│ ├── watcher-erc20
|
||||||
|
│ ├── watcher-erc721
|
||||||
|
│ ├── watcher-mobymask
|
||||||
|
│ └── watcher-uniswap-v3
|
||||||
├── container-build
|
├── container-build
|
||||||
|
│ ├── cerc-builder-js
|
||||||
|
│ ├── cerc-eth-probe
|
||||||
│ ├── cerc-eth-statediff-fill-service
|
│ ├── cerc-eth-statediff-fill-service
|
||||||
|
│ ├── cerc-eth-statediff-service
|
||||||
|
│ ├── cerc-fixturenet-eth-geth
|
||||||
|
│ ├── cerc-fixturenet-eth-lighthouse
|
||||||
│ ├── cerc-go-ethereum
|
│ ├── cerc-go-ethereum
|
||||||
│ ├── cerc-go-ethereum-foundry
|
│ ├── cerc-go-ethereum-foundry
|
||||||
│ ├── cerc-ipld-eth-beacon-db
|
│ ├── cerc-ipld-eth-beacon-db
|
||||||
│ ├── cerc-ipld-eth-beacon-indexer
|
│ ├── cerc-ipld-eth-beacon-indexer
|
||||||
│ ├── cerc-ipld-eth-db
|
│ ├── cerc-ipld-eth-db
|
||||||
│ ├── cerc-ipld-eth-server
|
│ ├── cerc-ipld-eth-server
|
||||||
|
│ ├── cerc-keycloak
|
||||||
|
│ ├── cerc-laconic-registry-cli
|
||||||
|
│ ├── cerc-laconicd
|
||||||
│ ├── cerc-lighthouse
|
│ ├── cerc-lighthouse
|
||||||
│ └── cerc-test-contract
|
│ ├── cerc-test-container
|
||||||
├── container-image-list.txt
|
│ ├── cerc-test-contract
|
||||||
├── repository-list.txt
|
│ ├── cerc-tx-spammer
|
||||||
|
│ ├── cerc-uniswap-v3-info
|
||||||
|
│ ├── cerc-watcher-erc20
|
||||||
|
│ ├── cerc-watcher-erc721
|
||||||
|
│ ├── cerc-watcher-mobymask
|
||||||
|
│ ├── cerc-watcher-uniswap-v3
|
||||||
|
└── stacks
|
||||||
|
├── erc20
|
||||||
|
├── erc721
|
||||||
|
├── fixturenet-eth
|
||||||
|
├── fixturenet-laconicd
|
||||||
|
├── mobymask
|
||||||
|
└── uniswap-v3
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user