frostfs-node/cmd/frostfs-adm
Dmitrii Stepanov 1bd1a6c021
All checks were successful
DCO action / DCO (pull_request) Successful in 4m35s
Tests and linters / Run gofumpt (pull_request) Successful in 6m7s
Vulncheck / Vulncheck (pull_request) Successful in 6m26s
Tests and linters / Tests (1.23) (pull_request) Successful in 6m59s
Tests and linters / Tests (1.22) (pull_request) Successful in 7m9s
Tests and linters / Staticcheck (pull_request) Successful in 7m9s
Pre-commit hooks / Pre-commit (pull_request) Successful in 7m32s
Tests and linters / Lint (pull_request) Successful in 7m40s
Tests and linters / Tests with -race (pull_request) Successful in 7m43s
Tests and linters / gopls check (pull_request) Successful in 7m42s
Build / Build Components (1.23) (pull_request) Successful in 7m37s
Build / Build Components (1.22) (pull_request) Successful in 7m44s
[#1334] metabase: Add upgrade from v2 to v3
Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
2024-08-29 13:08:44 +03:00
..
docs [#218] adm: Update doc for morph generate-alphabet 2024-07-01 06:56:02 +00:00
internal [#1334] metabase: Add upgrade from v2 to v3 2024-08-29 13:08:44 +03:00
main.go Rename package name 2023-03-07 16:38:26 +03:00
README.md [#218] adm: Update doc for morph generate-alphabet 2024-07-01 06:56:02 +00:00

FrostFS Admin Tool

Overview

Admin tool provides an easier way to deploy and maintain private installation of FrostFS. Private installation provides a set of N3 consensus nodes, FrostFS Alphabet, and Storage nodes. Admin tool generates consensus keys, initializes the sidechain, and provides functions to update the network and register new Storage nodes.

Build

To build binary locally, use make bin/frostfs-adm command.

For clean build inside a docker container, use make docker/bin/frostfs-adm.

Build docker image with make image-adm.

At FrostFS private install deployment, frostfs-adm requires compiled FrostFS contracts. Find them in the latest release of frostfs-contract repository.

Commands

Config

Config section provides init command that creates a configuration file for private installation deployment and updates. Config file is optional, all parameters can be passed by arguments or read from standard input (wallet passwords).

Config example:

rpc-endpoint: https://address:port # sidechain RPC node endpoint
alphabet-wallets: /path            # path to consensus node / alphabet wallets storage
network:
  max_object_size: 67108864 # max size of a single FrostFS object, bytes
  epoch_duration: 240       # duration of a FrostFS epoch in blocks, consider block generation frequency in the sidechain
  fee:
    candidate: 0 # inner ring candidate registration fee, for private installation consider 0
    container: 0 # container creation fee, for private installation consider 0
    container_alias: 0 # container nice-name registration fee, for private installation consider 0
    withdraw: 0  # withdraw fee, for private installation consider 0
credentials:     # passwords for consensus node / alphabet wallets
  az: password1
  buky: password2
  vedi: password3
  glagoli: password4
  dobro: password5
  yest: password6
  zhivete: password7

Morph

Network deployment

  • generate-alphabet generates a set of wallets for consensus and Alphabet nodes. The list of the name for alphabet wallets(no gaps between names allowed, order is important):

    • az, buky, vedi, glagoli, dobro, yest, zhivete, dzelo, zemlja, izhe, izhei, gerv, kako, ljudi, mislete, nash, on, pokoj, rtsi, slovo, tverdo, uk
  • init initializes the sidechain by deploying smart contracts and setting provided FrostFS network configuration.

  • generate-storage-wallet generates a wallet for the Storage node that is ready for deployment. It also transfers a bit of sidechain GAS, so this wallet can be used for FrostFS bootstrap.

Network maintenance

  • set-config add/update configuration values in the Netmap contract.

  • force-new-epoch increments FrostFS epoch number and executes new epoch handlers in FrostFS nodes.

  • refill-gas transfers sidechain GAS to the specified wallet.

  • update-contracts updates contracts to a new version.

Container migration

If a network has to be redeployed, these commands will migrate all container meta info. These commands do not migrate actual objects.

  • dump-containers saves all containers and metadata registered in the container contract to a file.

  • restore-containers restores previously saved containers by their repeated registration in the container contract.

  • list-containers output all containers ids.

Network info

  • dump-config prints FrostFS network configuration.

  • dump-hashes prints FrostFS contract addresses stored in NNS.

Private network deployment

Read step-by-step guide of private storage deployment in docs.