Skip to content

Commit

Permalink
Merge pull request nspcc-dev#289 from nspcc-dev/up-gw
Browse files Browse the repository at this point in the history
env: upgrade gateways and node to the latest and greatest
  • Loading branch information
roman-khimov committed Sep 13, 2023
2 parents c1724c2 + dd9ccc1 commit b66be3b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .env
Original file line number Diff line number Diff line change
Expand Up @@ -21,27 +21,27 @@ 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.37.0
IR_VERSION=0.38.0
IR_IMAGE=nspccdev/neofs-ir

# NeoFS Storage nodes
NODE_VERSION=0.37.0
NODE_VERSION=0.38.0
NODE_IMAGE=nspccdev/neofs-storage

# NATS Server
NATS_VERSION=2.7.2
NATS_IMAGE=nats

# HTTP Gate
HTTP_GW_VERSION=0.27.4
HTTP_GW_VERSION=0.27.5
HTTP_GW_IMAGE=nspccdev/neofs-http-gw

# REST Gate
REST_GW_VERSION=0.5.0
REST_GW_IMAGE=nspccdev/neofs-rest-gw

# S3 Gate
S3_GW_VERSION=0.28.1
S3_GW_VERSION=0.28.2
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}
Expand All @@ -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.37.0/neofs-cli-amd64.tar.gz
NEOFS_CLI_URL=https://github.com/nspcc-dev/neofs-node/releases/download/v0.38.0/neofs-cli-amd64.tar.gz
#NEOFS_CLI_PATH=/path/to/neofs-cli-binary

# NeoFS ADM tool binary
NEOFS_ADM_VERSION=v0.37.0
NEOFS_ADM_VERSION=v0.38.0
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

Expand Down
2 changes: 1 addition & 1 deletion services/k6_node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ RUN git clone https://github.com/nspcc-dev/xk6-neofs.git
RUN cd xk6-neofs && xk6 build --with github.com/nspcc-dev/xk6-neofs=.

# Download neofs-cli
RUN wget https://github.com/nspcc-dev/neofs-node/releases/download/v0.37.0/neofs-cli-amd64 -O /usr/local/bin/neofs-cli
RUN wget https://github.com/nspcc-dev/neofs-node/releases/download/v0.38.0/neofs-cli-amd64 -O /usr/local/bin/neofs-cli
RUN chmod +x /usr/local/bin/neofs-cli
4 changes: 2 additions & 2 deletions services/storage/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,6 @@ services:
- ../nats/client-key.pem:/etc/neofs-node/nats.tls.key
- ../nats/ca-cert.pem:/etc/neofs-node/nats.ca.crt
- ./cfg:/etc/neofs/storage
- NEOFS_STORAGE_SHARD_0_RESYNC_METABASE=${RESYNC_METABASE}
- NEOFS_STORAGE_SHARD_1_RESYNC_METABASE=${RESYNC_METABASE}
stop_signal: SIGKILL
env_file: [ ".env", ".storage.env", ".int_test.env" ]
command: [ "neofs-node", "--config", "/etc/neofs/storage/config.yml" ]
Expand All @@ -77,6 +75,8 @@ services:
- NEOFS_CONTROL_GRPC_ENDPOINT=${NEOFS_STORAGE_CONTROL_GRPC_ENDPOINT_2}
- NEOFS_NODE_ATTRIBUTE_0=UN-LOCODE:RU LED
- NEOFS_NODE_ATTRIBUTE_1=Price:33
- NEOFS_STORAGE_SHARD_0_RESYNC_METABASE=${RESYNC_METABASE}
- NEOFS_STORAGE_SHARD_1_RESYNC_METABASE=${RESYNC_METABASE}
healthcheck:
test: ["CMD", "/neofs-cli", "control", "healthcheck", "-c", "/cli-cfg.yml", "--endpoint", "${NEOFS_STORAGE_CONTROL_GRPC_ENDPOINT_2}"]
interval: 5s
Expand Down

0 comments on commit b66be3b

Please sign in to comment.