forked from TrueCloudLab/frostfs-node
Move to frostfs-node
Signed-off-by: Pavel Karpy <p.karpy@yadro.com>
This commit is contained in:
parent
42554a9298
commit
923f84722a
934 changed files with 3470 additions and 3451 deletions
|
@ -3,5 +3,5 @@
|
|||
wallet: wallets/wallet.json # path to the NEP-6 wallet file or path to private key file or WIF
|
||||
address: Nf5YDCHrrtFCbetGT8TF1kwH1SjnJjT9N1 # account address in the NEP-6 wallet, omit for default address
|
||||
password: secret # account password, use "" for empty password
|
||||
rpc-endpoint: s01.neofs.devenv:8080 # NeoFS API endpoint of NeoFS node
|
||||
rpc-endpoint: s01.frostfs.devenv:8080 # NeoFS API endpoint of NeoFS node
|
||||
endpoint: localhost:8090 # Control API endpoint of NeoFS node
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
|
||||
endpoint: 'localhost:8090'
|
||||
wallet: '/etc/neofs/ir/wallet.json'
|
||||
wallet: '/etc/frostfs/ir/wallet.json'
|
||||
password: ''
|
||||
#ir: true
|
||||
|
|
|
@ -22,7 +22,7 @@ NEOFS_IR_CONTROL_GRPC_ENDPOINT=localhost:8090
|
|||
|
||||
NEOFS_IR_GOVERNANCE_DISABLE=false
|
||||
|
||||
NEOFS_IR_NODE_PERSISTENT_STATE_PATH=.neofs-ir-state
|
||||
NEOFS_IR_NODE_PERSISTENT_STATE_PATH=.frostfs-ir-state
|
||||
|
||||
NEOFS_IR_LOCODE_DB_PATH=/path/to/locode.db
|
||||
|
||||
|
|
|
@ -40,7 +40,7 @@ governance:
|
|||
|
||||
node:
|
||||
persistent_state:
|
||||
path: .neofs-ir-state # Path to application state file
|
||||
path: .frostfs-ir-state # Path to application state file
|
||||
|
||||
locode:
|
||||
db:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
|
||||
endpoint: 'localhost:8091'
|
||||
wallet: '/etc/neofs/storage/wallet.json'
|
||||
wallet: '/etc/frostfs/storage/wallet.json'
|
||||
password: ''
|
||||
|
|
|
@ -13,7 +13,7 @@ NEOFS_NODE_KEY=./wallet.key
|
|||
NEOFS_NODE_WALLET_PATH=./wallet.json
|
||||
NEOFS_NODE_WALLET_ADDRESS=NcpJzXcSDrh5CCizf4K9Ro6w4t59J5LKzz
|
||||
NEOFS_NODE_WALLET_PASSWORD=password
|
||||
NEOFS_NODE_ADDRESSES="s01.neofs.devenv:8080 /dns4/s02.neofs.devenv/tcp/8081 grpc://127.0.0.1:8082 grpcs://localhost:8083"
|
||||
NEOFS_NODE_ADDRESSES="s01.frostfs.devenv:8080 /dns4/s02.frostfs.devenv/tcp/8081 grpc://127.0.0.1:8082 grpcs://localhost:8083"
|
||||
NEOFS_NODE_ATTRIBUTE_0=Price:11
|
||||
NEOFS_NODE_ATTRIBUTE_1="UN-LOCODE:RU MSK"
|
||||
NEOFS_NODE_RELAY=true
|
||||
|
@ -37,14 +37,14 @@ NEOFS_TREE_REPLICATION_WORKER_COUNT=32
|
|||
|
||||
# gRPC section
|
||||
## 0 server
|
||||
NEOFS_GRPC_0_ENDPOINT=s01.neofs.devenv:8080
|
||||
NEOFS_GRPC_0_ENDPOINT=s01.frostfs.devenv:8080
|
||||
### TLS config
|
||||
NEOFS_GRPC_0_TLS_ENABLED=true
|
||||
NEOFS_GRPC_0_TLS_CERTIFICATE=/path/to/cert
|
||||
NEOFS_GRPC_0_TLS_KEY=/path/to/key
|
||||
|
||||
## 1 server
|
||||
NEOFS_GRPC_1_ENDPOINT=s02.neofs.devenv:8080
|
||||
NEOFS_GRPC_1_ENDPOINT=s02.frostfs.devenv:8080
|
||||
### TLS config
|
||||
NEOFS_GRPC_1_TLS_ENABLED=false
|
||||
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
"password": "password"
|
||||
},
|
||||
"addresses": [
|
||||
"s01.neofs.devenv:8080",
|
||||
"/dns4/s02.neofs.devenv/tcp/8081",
|
||||
"s01.frostfs.devenv:8080",
|
||||
"/dns4/s02.frostfs.devenv/tcp/8081",
|
||||
"grpc://127.0.0.1:8082",
|
||||
"grpcs://localhost:8083"
|
||||
],
|
||||
|
@ -54,7 +54,7 @@
|
|||
},
|
||||
"grpc": {
|
||||
"0": {
|
||||
"endpoint": "s01.neofs.devenv:8080",
|
||||
"endpoint": "s01.frostfs.devenv:8080",
|
||||
"tls": {
|
||||
"enabled": true,
|
||||
"certificate": "/path/to/cert",
|
||||
|
@ -62,13 +62,13 @@
|
|||
}
|
||||
},
|
||||
"1": {
|
||||
"endpoint": "s02.neofs.devenv:8080",
|
||||
"endpoint": "s02.frostfs.devenv:8080",
|
||||
"tls": {
|
||||
"enabled": false
|
||||
}
|
||||
},
|
||||
"2": {
|
||||
"endpoint": "s03.neofs.devenv:8080",
|
||||
"endpoint": "s03.frostfs.devenv:8080",
|
||||
"tls": {
|
||||
"enabled": true,
|
||||
"use_insecure_crypto": true
|
||||
|
|
|
@ -18,8 +18,8 @@ node:
|
|||
address: "NcpJzXcSDrh5CCizf4K9Ro6w4t59J5LKzz" # address of a NEO account in the wallet; ignored if key is presented
|
||||
password: "password" # password for a NEO account in the wallet; ignored if key is presented
|
||||
addresses: # list of addresses announced by Storage node in the Network map
|
||||
- s01.neofs.devenv:8080
|
||||
- /dns4/s02.neofs.devenv/tcp/8081
|
||||
- s01.frostfs.devenv:8080
|
||||
- /dns4/s02.frostfs.devenv/tcp/8081
|
||||
- grpc://127.0.0.1:8082
|
||||
- grpcs://localhost:8083
|
||||
attribute_0: "Price:11"
|
||||
|
@ -45,16 +45,16 @@ node:
|
|||
ca: "/ca/path" # path to optional CA certificate
|
||||
|
||||
grpc:
|
||||
- endpoint: s01.neofs.devenv:8080 # endpoint for gRPC server
|
||||
- endpoint: s01.frostfs.devenv:8080 # endpoint for gRPC server
|
||||
tls:
|
||||
enabled: true # use TLS for a gRPC connection (min version is TLS 1.2)
|
||||
certificate: /path/to/cert # path to TLS certificate
|
||||
key: /path/to/key # path to TLS key
|
||||
|
||||
- endpoint: s02.neofs.devenv:8080 # endpoint for gRPC server
|
||||
- endpoint: s02.frostfs.devenv:8080 # endpoint for gRPC server
|
||||
tls:
|
||||
enabled: false # use TLS for a gRPC connection
|
||||
- endpoint: s03.neofs.devenv:8080
|
||||
- endpoint: s03.frostfs.devenv:8080
|
||||
tls:
|
||||
enabled: true
|
||||
use_insecure_crypto: true # allow using insecure ciphers with TLS 1.2
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue