-
Notifications
You must be signed in to change notification settings - Fork 25
/
.env
54 lines (44 loc) · 1.89 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Basenet settings
LOCAL_DOMAIN=neofs.devenv
IPV4_PREFIX=192.168.130
CA_CERTS_TRUSTED_STORE=${PWD}/vendor/certs
# Bastion image
BASTION_VERSION=10
BASTION_IMAGE=debian
#NEOGO
NEOGO_VERSION=0.106.3
NEOGO_IMAGE=nspccdev/neo-go
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.43.0
IR_IMAGE=nspccdev/neofs-ir
# NeoFS Storage nodes
NODE_VERSION=0.43.0
NODE_IMAGE=nspccdev/neofs-storage
# REST Gate
REST_GW_VERSION=0.8.2
REST_GW_IMAGE=nspccdev/neofs-rest-gw
# S3 Gate
S3_GW_VERSION=0.31.0
S3_GW_IMAGE=nspccdev/neofs-s3-gw
#S3_GW_PLATFORM=linux-amd64
#S3_AUTHMATE_URL=https://github.com/nspcc-dev/neofs-s3-gw/releases/download/v${S3_GW_VERSION}/neofs-s3-authmate-${S3_GW_PLATFORM}
#S3_GW_URL=https://github.com/nspcc-dev/neofs-s3-gw/releases/download/v${S3_GW_VERSION}/neofs-s3-gw-${S3_GW_PLATFORM}
# NeoFS CLI binary
NEOFS_CLI_URL=https://github.com/nspcc-dev/neofs-node/releases/download/v0.43.0/neofs-cli-linux-amd64
#NEOFS_CLI_PATH=/path/to/neofs-cli-binary
# NeoFS ADM tool binary
NEOFS_ADM_VERSION=v0.43.0
NEOFS_ADM_URL=https://github.com/nspcc-dev/neofs-node/releases/download/${NEOFS_ADM_VERSION}/neofs-adm-linux-amd64
#NEOFS_ADM_PATH=/path/to/neofs-adm-binary
# Compiled NeoFS Smart Contracts
NEOFS_CONTRACTS_VERSION=v0.20.0
NEOFS_CONTRACTS_URL=https://github.com/nspcc-dev/neofs-contract/releases/download/${NEOFS_CONTRACTS_VERSION}/neofs-contract-${NEOFS_CONTRACTS_VERSION}.tar.gz
#NEOFS_CONTRACTS_PATH=/path/to/unpacked/neofs-contracts-dir
# Control service addresses used for healthchecks
NEOFS_IR_CONTROL_GRPC_ENDPOINT=127.0.0.1:16512
NEOFS_STORAGE_CONTROL_GRPC_ENDPOINT_1=s01.${LOCAL_DOMAIN}:8081
NEOFS_STORAGE_CONTROL_GRPC_ENDPOINT_2=s02.${LOCAL_DOMAIN}:8081
NEOFS_STORAGE_CONTROL_GRPC_ENDPOINT_3=s03.${LOCAL_DOMAIN}:8081
NEOFS_STORAGE_CONTROL_GRPC_ENDPOINT_4=s04.${LOCAL_DOMAIN}:8081