[#1689] config: Remove testnet and mainnet configs
All checks were successful
Vulncheck / Vulncheck (push) Successful in 1m5s
Pre-commit hooks / Pre-commit (push) Successful in 1m28s
Build / Build Components (push) Successful in 1m57s
Tests and linters / gopls check (push) Successful in 3m37s
Tests and linters / Run gofumpt (push) Successful in 4m14s
Tests and linters / Staticcheck (push) Successful in 4m16s
Tests and linters / Tests (push) Successful in 4m24s
Tests and linters / Lint (push) Successful in 4m26s
Tests and linters / Tests with -race (push) Successful in 4m31s
OCI image / Build container images (push) Successful in 4m55s
All checks were successful
Vulncheck / Vulncheck (push) Successful in 1m5s
Pre-commit hooks / Pre-commit (push) Successful in 1m28s
Build / Build Components (push) Successful in 1m57s
Tests and linters / gopls check (push) Successful in 3m37s
Tests and linters / Run gofumpt (push) Successful in 4m14s
Tests and linters / Staticcheck (push) Successful in 4m16s
Tests and linters / Tests (push) Successful in 4m24s
Tests and linters / Lint (push) Successful in 4m26s
Tests and linters / Tests with -race (push) Successful in 4m31s
OCI image / Build container images (push) Successful in 4m55s
They are invalid and unsupported. There is neither mainnet nor testnet currently. Change-Id: I520363e2de0c22a584238accc253248be3eefea5 Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
This commit is contained in:
parent
e7e91ef634
commit
30099194ba
5 changed files with 0 additions and 293 deletions
|
@ -1,7 +1,6 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
@ -22,17 +21,4 @@ func TestValidate(t *testing.T) {
|
||||||
require.NoError(t, err)
|
require.NoError(t, err)
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("mainnet", func(t *testing.T) {
|
|
||||||
os.Clearenv() // ENVs have priority over config files, so we do this in tests
|
|
||||||
p := filepath.Join(exampleConfigPrefix, "mainnet/config.yml")
|
|
||||||
c := config.New(p, "", config.EnvPrefix)
|
|
||||||
require.NoError(t, validateConfig(c))
|
|
||||||
})
|
|
||||||
t.Run("testnet", func(t *testing.T) {
|
|
||||||
os.Clearenv() // ENVs have priority over config files, so we do this in tests
|
|
||||||
p := filepath.Join(exampleConfigPrefix, "testnet/config.yml")
|
|
||||||
c := config.New(p, "", config.EnvPrefix)
|
|
||||||
require.NoError(t, validateConfig(c))
|
|
||||||
})
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
# N3 Mainnet Storage node configuration
|
|
||||||
|
|
||||||
Here is a template for simple storage node configuration in N3 Mainnet.
|
|
||||||
Make sure to specify correct values instead of `<...>` placeholders.
|
|
||||||
Do not change `contracts` section. Run the latest frostfs-node release with
|
|
||||||
the fixed config `frostfs-node -c config.yml`
|
|
||||||
|
|
||||||
To use NeoFS in the Mainnet, you need to deposit assets to NeoFS contract.
|
|
||||||
The contract sript hash is `2cafa46838e8b564468ebd868dcafdd99dce6221`
|
|
||||||
(N3 address `NNxVrKjLsRkWsmGgmuNXLcMswtxTGaNQLk`)
|
|
||||||
|
|
||||||
## Tips
|
|
||||||
|
|
||||||
Use `grpcs://` scheme in the announced address if you enable TLS in grpc server.
|
|
||||||
```yaml
|
|
||||||
node:
|
|
||||||
addresses:
|
|
||||||
- grpcs://frostfs.my.org:8080
|
|
||||||
|
|
||||||
grpc:
|
|
||||||
num: 1
|
|
||||||
0:
|
|
||||||
endpoint: frostfs.my.org:8080
|
|
||||||
tls:
|
|
||||||
enabled: true
|
|
||||||
certificate: /path/to/cert
|
|
||||||
key: /path/to/key
|
|
||||||
```
|
|
|
@ -1,70 +0,0 @@
|
||||||
node:
|
|
||||||
wallet:
|
|
||||||
path: <path/to/wallet>
|
|
||||||
address: <address-in-wallet>
|
|
||||||
password: <password>
|
|
||||||
addresses:
|
|
||||||
- <announced.address:port>
|
|
||||||
attribute_0: UN-LOCODE:<XX YYY>
|
|
||||||
attribute_1: Price:100000
|
|
||||||
attribute_2: User-Agent:FrostFS\/0.9999
|
|
||||||
|
|
||||||
grpc:
|
|
||||||
num: 1
|
|
||||||
0:
|
|
||||||
endpoint: <listen.local.address:port>
|
|
||||||
tls:
|
|
||||||
enabled: false
|
|
||||||
|
|
||||||
storage:
|
|
||||||
shard_num: 1
|
|
||||||
shard:
|
|
||||||
0:
|
|
||||||
metabase:
|
|
||||||
path: /storage/path/metabase
|
|
||||||
perm: 0600
|
|
||||||
blobstor:
|
|
||||||
- path: /storage/path/blobovnicza
|
|
||||||
type: blobovnicza
|
|
||||||
perm: 0600
|
|
||||||
opened_cache_capacity: 32
|
|
||||||
depth: 1
|
|
||||||
width: 1
|
|
||||||
- path: /storage/path/fstree
|
|
||||||
type: fstree
|
|
||||||
perm: 0600
|
|
||||||
depth: 4
|
|
||||||
writecache:
|
|
||||||
enabled: false
|
|
||||||
gc:
|
|
||||||
remover_batch_size: 100
|
|
||||||
remover_sleep_interval: 1m
|
|
||||||
|
|
||||||
logger:
|
|
||||||
level: info
|
|
||||||
|
|
||||||
prometheus:
|
|
||||||
enabled: true
|
|
||||||
address: localhost:9090
|
|
||||||
shutdown_timeout: 15s
|
|
||||||
|
|
||||||
object:
|
|
||||||
put:
|
|
||||||
remote_pool_size: 100
|
|
||||||
local_pool_size: 100
|
|
||||||
|
|
||||||
morph:
|
|
||||||
rpc_endpoint:
|
|
||||||
- wss://rpc1.morph.frostfs.info:40341/ws
|
|
||||||
- wss://rpc2.morph.frostfs.info:40341/ws
|
|
||||||
- wss://rpc3.morph.frostfs.info:40341/ws
|
|
||||||
- wss://rpc4.morph.frostfs.info:40341/ws
|
|
||||||
- wss://rpc5.morph.frostfs.info:40341/ws
|
|
||||||
- wss://rpc6.morph.frostfs.info:40341/ws
|
|
||||||
- wss://rpc7.morph.frostfs.info:40341/ws
|
|
||||||
dial_timeout: 20s
|
|
||||||
|
|
||||||
contracts:
|
|
||||||
balance: dc1ec98d9d0c5f9dfade16144defe08cffc5ca55
|
|
||||||
container: 1b6e68d299b570e1cb7e86eadfdc06aa2e8e0cc5
|
|
||||||
netmap: 7c5bdb23e36cc7cce95bf42f3ab9e452c2501df1
|
|
|
@ -1,129 +0,0 @@
|
||||||
# N3 Testnet Storage node configuration
|
|
||||||
|
|
||||||
There is a prepared configuration for NeoFS Storage Node deployment in
|
|
||||||
N3 Testnet. The easiest way to deploy a Storage Node is to use the prepared
|
|
||||||
docker image and run it with docker-compose.
|
|
||||||
|
|
||||||
## Build image
|
|
||||||
|
|
||||||
Prepared **frostfs-storage-testnet** image is available at Docker Hub.
|
|
||||||
However, if you need to rebuild it for some reason, run
|
|
||||||
`make image-storage-testnet` command.
|
|
||||||
|
|
||||||
```
|
|
||||||
$ make image-storage-testnet
|
|
||||||
...
|
|
||||||
Successfully built ab0557117b02
|
|
||||||
Successfully tagged nspccdev/neofs-storage-testnet:0.25.1
|
|
||||||
```
|
|
||||||
|
|
||||||
## Deploy node
|
|
||||||
|
|
||||||
To run a storage node in N3 Testnet environment, you should deposit GAS assets,
|
|
||||||
update docker-compose file and start the node.
|
|
||||||
|
|
||||||
### Deposit
|
|
||||||
|
|
||||||
The Storage Node owner should deposit GAS to NeoFS smart contract. It generates a
|
|
||||||
bit of sidechain GAS in the node's wallet. Sidechain GAS is used to send bootstrap tx.
|
|
||||||
|
|
||||||
First, obtain GAS in N3 Testnet chain. You can do that with
|
|
||||||
[faucet](https://neowish.ngd.network) service.
|
|
||||||
|
|
||||||
Then, make a deposit by transferring GAS to NeoFS contract in N3 Testnet.
|
|
||||||
You can provide scripthash in the `data` argument of transfer tx to make a
|
|
||||||
deposit to a specified account. Otherwise, deposit is made to the tx sender.
|
|
||||||
|
|
||||||
NeoFS contract scripthash in N3 Testnet is `b65d8243ac63983206d17e5221af0653a7266fa1`,
|
|
||||||
so the address is `NadZ8YfvkddivcFFkztZgfwxZyKf1acpRF`.
|
|
||||||
|
|
||||||
See a deposit example with `neo-go`.
|
|
||||||
|
|
||||||
```
|
|
||||||
neo-go wallet nep17 transfer -w wallet.json -r https://rpc01.testnet.n3.nspcc.ru:21331 \
|
|
||||||
--from NXxRAFPqPstaPByndKMHuC8iGcaHgtRY3m \
|
|
||||||
--to NadZ8YfvkddivcFFkztZgfwxZyKf1acpRF \
|
|
||||||
--token GAS \
|
|
||||||
--amount 1
|
|
||||||
```
|
|
||||||
|
|
||||||
### Configure
|
|
||||||
|
|
||||||
Next, configure `node_config.env` file. Change endpoints values. Both
|
|
||||||
should contain your **public** IP.
|
|
||||||
|
|
||||||
```
|
|
||||||
NEOFS_GRPC_0_ENDPOINT=65.52.183.157:36512
|
|
||||||
NEOFS_NODE_ADDRESSES=65.52.183.157:36512
|
|
||||||
```
|
|
||||||
|
|
||||||
Set up your [UN/LOCODE](https://unece.org/trade/cefact/unlocode-code-list-country-and-territory)
|
|
||||||
attribute.
|
|
||||||
|
|
||||||
```
|
|
||||||
NEOFS_GRPC_0_ENDPOINT=65.52.183.157:36512
|
|
||||||
NEOFS_NODE_ADDRESSES=65.52.183.157:36512
|
|
||||||
NEOFS_NODE_ATTRIBUTE_2=UN-LOCODE:RU LED
|
|
||||||
```
|
|
||||||
|
|
||||||
You can validate UN/LOCODE attribute in
|
|
||||||
[NeoFS LOCODE database](https://git.frostfs.info/TrueCloudLab/frostfs-locode-db/releases/tag/v0.4.0)
|
|
||||||
with frostfs-cli.
|
|
||||||
|
|
||||||
```
|
|
||||||
$ frostfs-cli util locode info --db ./locode_db --locode 'RU LED'
|
|
||||||
Country: Russia
|
|
||||||
Location: Saint Petersburg (ex Leningrad)
|
|
||||||
Continent: Europe
|
|
||||||
Subdivision: [SPE] Sankt-Peterburg
|
|
||||||
Coordinates: 59.53, 30.15
|
|
||||||
```
|
|
||||||
|
|
||||||
It is recommended to pass the node's key as a file. To do so, convert your wallet
|
|
||||||
WIF to 32-byte hex (via `frostfs-cli` for example) and save it to a file.
|
|
||||||
|
|
||||||
```
|
|
||||||
// Print WIF in a 32-byte hex format
|
|
||||||
$ frostfs-cli util keyer Kwp4Q933QujZLUCcn39tzY94itNQJS4EjTp28oAMzuxMwabm3p1s
|
|
||||||
PrivateKey 11ab917cd99170cb8d0d48e78fca317564e6b3aaff7f7058952d6175cdca0f56
|
|
||||||
PublicKey 02be8b2e837cab232168f5c3303f1b985818b7583682fb49026b8d2f43df7c1059
|
|
||||||
WIF Kwp4Q933QujZLUCcn39tzY94itNQJS4EjTp28oAMzuxMwabm3p1s
|
|
||||||
Wallet3.0 Nfzmk7FAZmEHDhLePdgysQL2FgkJbaEMpQ
|
|
||||||
ScriptHash3.0 dffe39998f50d42f2e06807866161cd0440b4bdc
|
|
||||||
ScriptHash3.0BE dc4b0b44d01c16667880062e2fd4508f9939fedf
|
|
||||||
|
|
||||||
// Save 32-byte hex into a file
|
|
||||||
$ echo '11ab917cd99170cb8d0d48e78fca317564e6b3aaff7f7058952d6175cdca0f56' | xxd -r -p > my_wallet.key
|
|
||||||
```
|
|
||||||
|
|
||||||
Then, specify the path to this file in `docker-compose.yml`
|
|
||||||
```yaml
|
|
||||||
volumes:
|
|
||||||
- frostfs_storage:/storage
|
|
||||||
- ./my_wallet.key:/node.key
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
NeoFS objects will be stored on your machine. By default, docker-compose
|
|
||||||
is configured to store objects in named docker volume `frostfs_storage`. You can
|
|
||||||
specify a directory on the filesystem to store objects there.
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
volumes:
|
|
||||||
- /home/username/frostfs/rc3/storage:/storage
|
|
||||||
- ./my_wallet.key:/node.key
|
|
||||||
```
|
|
||||||
|
|
||||||
### Start
|
|
||||||
|
|
||||||
Run the node with `docker-compose up` command and stop it with `docker-compose down`.
|
|
||||||
|
|
||||||
### Debug
|
|
||||||
|
|
||||||
To print node logs, use `docker logs frostfs-testnet`. To print debug messages in
|
|
||||||
log, set up log level to debug with this env:
|
|
||||||
|
|
||||||
```yaml
|
|
||||||
environment:
|
|
||||||
- NEOFS_LOGGER_LEVEL=debug
|
|
||||||
```
|
|
|
@ -1,52 +0,0 @@
|
||||||
logger:
|
|
||||||
level: info
|
|
||||||
|
|
||||||
morph:
|
|
||||||
rpc_endpoint:
|
|
||||||
- wss://rpc01.morph.testnet.frostfs.info:51331/ws
|
|
||||||
- wss://rpc02.morph.testnet.frostfs.info:51331/ws
|
|
||||||
- wss://rpc03.morph.testnet.frostfs.info:51331/ws
|
|
||||||
- wss://rpc04.morph.testnet.frostfs.info:51331/ws
|
|
||||||
- wss://rpc05.morph.testnet.frostfs.info:51331/ws
|
|
||||||
- wss://rpc06.morph.testnet.frostfs.info:51331/ws
|
|
||||||
- wss://rpc07.morph.testnet.frostfs.info:51331/ws
|
|
||||||
dial_timeout: 20s
|
|
||||||
|
|
||||||
contracts:
|
|
||||||
balance: e0420c216003747626670d1424569c17c79015bf
|
|
||||||
container: 9dbd2b5e67568ed285c3d6f96bac4edf5e1efba0
|
|
||||||
netmap: d4b331639799e2958d4bc5b711b469d79de94e01
|
|
||||||
|
|
||||||
node:
|
|
||||||
key: /node.key
|
|
||||||
attribute_0: Deployed:SelfHosted
|
|
||||||
attribute_1: User-Agent:FrostFS\/0.9999
|
|
||||||
|
|
||||||
prometheus:
|
|
||||||
enabled: true
|
|
||||||
address: localhost:9090
|
|
||||||
shutdown_timeout: 15s
|
|
||||||
|
|
||||||
storage:
|
|
||||||
shard_num: 1
|
|
||||||
shard:
|
|
||||||
0:
|
|
||||||
metabase:
|
|
||||||
path: /storage/metabase
|
|
||||||
perm: 0777
|
|
||||||
blobstor:
|
|
||||||
- path: /storage/path/blobovnicza
|
|
||||||
type: blobovnicza
|
|
||||||
perm: 0600
|
|
||||||
opened_cache_capacity: 32
|
|
||||||
depth: 1
|
|
||||||
width: 1
|
|
||||||
- path: /storage/path/fstree
|
|
||||||
type: fstree
|
|
||||||
perm: 0600
|
|
||||||
depth: 4
|
|
||||||
writecache:
|
|
||||||
enabled: false
|
|
||||||
gc:
|
|
||||||
remover_batch_size: 100
|
|
||||||
remover_sleep_interval: 1m
|
|
Loading…
Add table
Reference in a new issue