From ab1153baf046caf6a686dd1b96456ef6d468fb43 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Mon, 18 Sep 2023 16:26:44 +0300 Subject: [PATCH 1/2] env: update node to 0.38.1 Signed-off-by: Roman Khimov --- .env | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.env b/.env index 26c832c..93bced4 100644 --- a/.env +++ b/.env @@ -21,11 +21,11 @@ NEOGO_IMAGE=nspccdev/neo-go #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.38.0 +IR_VERSION=0.38.1 IR_IMAGE=nspccdev/neofs-ir # NeoFS Storage nodes -NODE_VERSION=0.38.0 +NODE_VERSION=0.38.1 NODE_IMAGE=nspccdev/neofs-storage # NATS Server @@ -56,11 +56,11 @@ LOCODE_DB_URL=https://github.com/nspcc-dev/neofs-locode-db/releases/download/v0. #LOCODE_DB_PATH=/path/to/locode_db # NeoFS CLI binary -NEOFS_CLI_URL=https://github.com/nspcc-dev/neofs-node/releases/download/v0.38.0/neofs-cli-amd64.tar.gz +NEOFS_CLI_URL=https://github.com/nspcc-dev/neofs-node/releases/download/v0.38.1/neofs-cli-amd64.tar.gz #NEOFS_CLI_PATH=/path/to/neofs-cli-binary # NeoFS ADM tool binary -NEOFS_ADM_VERSION=v0.38.0 +NEOFS_ADM_VERSION=v0.38.1 NEOFS_ADM_URL=https://github.com/nspcc-dev/neofs-node/releases/download/${NEOFS_ADM_VERSION}/neofs-adm-amd64.tar.gz #NEOFS_ADM_PATH=/path/to/neofs-adm-binary From b1701791497d295e3b056dfd8866987eefa08d52 Mon Sep 17 00:00:00 2001 From: Roman Khimov Date: Mon, 18 Sep 2023 16:27:07 +0300 Subject: [PATCH 2/2] storage: move from deprecated bbcz to peapod It's finally possible with 0.38.1. Signed-off-by: Roman Khimov --- services/storage/cfg/config.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/services/storage/cfg/config.yml b/services/storage/cfg/config.yml index 82bdb96..dbef6d0 100644 --- a/services/storage/cfg/config.yml +++ b/services/storage/cfg/config.yml @@ -47,10 +47,8 @@ storage: path: /storage/meta0 # Path to the metabase blobstor: - - type: blobovnicza - path: /storage/blobovnicza0 # Blobovnicza root directory - depth: 2 - width: 4 + - type: peapod + path: /storage/peapod0.db - type: fstree path: /storage/fstree0 # FSTree root directory depth: 2 @@ -67,10 +65,8 @@ storage: path: /storage/meta1 # Path to the metabase blobstor: - - type: blobovnicza - path: /storage/blobovnicza1 # Blobovnicza root directory - depth: 2 - width: 4 + - type: peapod + path: /storage/peapod1.db - type: fstree path: /storage/fstree1 # FSTree root directory depth: 2