Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ NEO_GO_PLATFORM=linux-amd64
NEO_GO_URL="https://github.com/nspcc-dev/neo-go/releases/download/v${NEOGO_VERSION}/neo-go-${NEO_GO_PLATFORM}"

# NeoFS InnerRing nodes
IR_VERSION=0.50.2
IR_IMAGE=nspccdev/neofs-ir
IR_NUMBER_OF_NODES=1
IR_VERSION=0.50.2-7-g79e4ff0a-dirty
IR_IMAGE=nspccdev/neofs-dirty-ir
IR_NUMBER_OF_NODES=7

# NeoFS Storage nodes
NODE_VERSION=0.50.2
NODE_IMAGE=nspccdev/neofs-storage
NODE_VERSION=0.50.2-7-g79e4ff0a-dirty
NODE_IMAGE=nspccdev/neofs-dirty-storage

# REST Gate
REST_GW_VERSION=0.8.2
Expand Down
22 changes: 21 additions & 1 deletion services/ir7/cfg/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,24 @@ settlement:
basic_income_rate: 100000000 # Optional: override basic income rate value from network config; applied only in debug mode

experimental:
chain_meta_data: true # Optional: allows creating containers with metadata handled via FS chain
chain_meta_data: # Optional: allows creating containers with metadata handled via FS chain
enabled: true
storage:
type: boltdb
path: /neofs_metachain/db.bolt
seed_nodes:
- ir01:20334
- ir02:20334
- ir03:20334
- ir04:20334
- ir05:20334
- ir06:20334
- ir07:20334
rpc:
listen:
- ":30334"
p2p:
listen:
- ":20334"
peers:
min: 4
14 changes: 14 additions & 0 deletions services/ir7/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ services:
- NEOFS_IR_CONTROL_GRPC_ENDPOINT=${NEOFS_IR_CONTROL_GRPC_ENDPOINT_1}
volumes:
- neofs_chain_ir01:/neofs_chain/
- neofs_metachain_ir01:/neofs_metachain/
- ./alphabet/az.json:/wallet.json
- ./../../vendor/hosts:/etc/hosts
- ./../../vendor/neofs-cli:/neofs-cli
Expand Down Expand Up @@ -49,6 +50,7 @@ services:
- NEOFS_IR_CONTROL_GRPC_ENDPOINT=${NEOFS_IR_CONTROL_GRPC_ENDPOINT_2}
volumes:
- neofs_chain_ir02:/neofs_chain/
- neofs_metachain_ir02:/neofs_metachain/
- ./alphabet/buky.json:/wallet.json
- ./../../vendor/hosts:/etc/hosts
- ./../../vendor/neofs-cli:/neofs-cli
Expand Down Expand Up @@ -80,6 +82,7 @@ services:
- NEOFS_IR_CONTROL_GRPC_ENDPOINT=${NEOFS_IR_CONTROL_GRPC_ENDPOINT_3}
volumes:
- neofs_chain_ir03:/neofs_chain/
- neofs_metachain_ir03:/neofs_metachain/
- ./alphabet/vedi.json:/wallet.json
- ./../../vendor/hosts:/etc/hosts
- ./../../vendor/neofs-cli:/neofs-cli
Expand Down Expand Up @@ -111,6 +114,7 @@ services:
- NEOFS_IR_CONTROL_GRPC_ENDPOINT=${NEOFS_IR_CONTROL_GRPC_ENDPOINT_4}
volumes:
- neofs_chain_ir04:/neofs_chain/
- neofs_metachain_ir04:/neofs_metachain/
- ./alphabet/glagoli.json:/wallet.json
- ./../../vendor/hosts:/etc/hosts
- ./../../vendor/neofs-cli:/neofs-cli
Expand Down Expand Up @@ -142,6 +146,7 @@ services:
- NEOFS_IR_CONTROL_GRPC_ENDPOINT=${NEOFS_IR_CONTROL_GRPC_ENDPOINT_5}
volumes:
- neofs_chain_ir05:/neofs_chain/
- neofs_metachain_ir05:/neofs_metachain/
- ./alphabet/dobro.json:/wallet.json
- ./../../vendor/hosts:/etc/hosts
- ./../../vendor/neofs-cli:/neofs-cli
Expand Down Expand Up @@ -173,6 +178,7 @@ services:
- NEOFS_IR_CONTROL_GRPC_ENDPOINT=${NEOFS_IR_CONTROL_GRPC_ENDPOINT_6}
volumes:
- neofs_chain_ir06:/neofs_chain/
- neofs_metachain_ir06:/neofs_metachain/
- ./alphabet/yest.json:/wallet.json
- ./../../vendor/hosts:/etc/hosts
- ./../../vendor/neofs-cli:/neofs-cli
Expand Down Expand Up @@ -204,6 +210,7 @@ services:
- NEOFS_IR_CONTROL_GRPC_ENDPOINT=${NEOFS_IR_CONTROL_GRPC_ENDPOINT_7}
volumes:
- neofs_chain_ir07:/neofs_chain/
- neofs_metachain_ir07:/neofs_metachain/
- ./alphabet/zhivete.json:/wallet.json
- ./../../vendor/hosts:/etc/hosts
- ./../../vendor/neofs-cli:/neofs-cli
Expand Down Expand Up @@ -252,4 +259,11 @@ volumes:
neofs_chain_ir05:
neofs_chain_ir06:
neofs_chain_ir07:
neofs_metachain_ir01:
neofs_metachain_ir02:
neofs_metachain_ir03:
neofs_metachain_ir04:
neofs_metachain_ir05:
neofs_metachain_ir06:
neofs_metachain_ir07:

21 changes: 21 additions & 0 deletions services/storage/cfg/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,24 @@ storage:
type: fstree
path: /storage/fstree1 # FSTree root directory
depth: 2

metadata:
seed_nodes:
- ir01:20334
- ir02:20334
- ir03:20334
- ir04:20334
- ir05:20334
- ir06:20334
- ir07:20334
storage:
type: boltdb
path: /storage/metachain/db.bolt
rpc:
listen:
- ":30333"
p2p:
listen:
- ":20333"
peers:
min: 4