Skip to content

Commit

Permalink
Merge branch 'master' into upload-pages-artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
vvarg229 committed Jul 28, 2023
2 parents b681e64 + 14ad097 commit 581b7a2
Show file tree
Hide file tree
Showing 160 changed files with 2,246 additions and 1,085 deletions.
3 changes: 1 addition & 2 deletions .docker/Dockerfile.adm
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ COPY . /src
RUN make bin/neofs-adm

# Executable image
FROM alpine AS neofs-adm
RUN apk add --no-cache bash
FROM scratch

WORKDIR /

Expand Down
3 changes: 1 addition & 2 deletions .docker/Dockerfile.cli
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@ COPY . /src
RUN make bin/neofs-cli

# Executable image
FROM alpine AS neofs-cli
RUN apk add --no-cache bash
FROM scratch

WORKDIR /

Expand Down
4 changes: 2 additions & 2 deletions .docker/Dockerfile.ir
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ COPY . /src
RUN make bin/neofs-ir

# Executable image
FROM alpine AS neofs-ir
RUN apk add --no-cache bash
FROM scratch

WORKDIR /

COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /src/bin/neofs-ir /bin/neofs-ir

CMD ["neofs-ir"]
4 changes: 2 additions & 2 deletions .docker/Dockerfile.storage
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ COPY . /src
RUN make bin/neofs-node

# Executable image
FROM alpine AS neofs-node
RUN apk add --no-cache bash
FROM scratch

WORKDIR /

COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /src/bin/neofs-node /bin/neofs-node

CMD ["neofs-node"]
4 changes: 2 additions & 2 deletions .docker/Dockerfile.storage-testnet
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ COPY . /src
RUN make bin/neofs-node

# Executable image
FROM alpine AS neofs-node
RUN apk add --no-cache bash
FROM scratch

WORKDIR /

COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /src/bin/neofs-node /bin/neofs-node
COPY --from=builder /src/config/testnet/config.yml /config.yml

Expand Down
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,28 @@ Changelog for NeoFS Node
- Embedded Neo contracts in `contracts` dir (#2391)
- `dump-names` command for adm
- `renew-domain` command for adm
- Stored payload metric per container (#2116)
- Stored payload metric per shard (#2023)

### Fixed
- `neo-go` RPC connection lost handling by IR (#1337)
- `neo-go` RPC connection loss handling (#1337)
- Concurrent morph cache misses (#1248)
- Double voting for validators on IR startup (#2365)
- Skip unexpected notary events on notary request parsing step (#2315)

### Removed
- Deprecated `morph.rpc_endpoint` SN and `morph.endpoint.client` IR config sections (#2400)
- `neofs_node_object_epoch` metric for IR and SN (#2347)
- Subnets support (#2411)
- Logging utility completely replaced with `zap.Logger` (#696)

### Changed
- CLI `--timeout` flag configures whole execution timeout from now (#2124)
- CLI default timeout for commands with `--await` flag increased to 1m (#2124)
- BlobStor tries to store object in any sub-storage with free space (#2450)

### Updated
- `neofs-sdk-go` to `v1.0.0-rc.9`

### Updating from v0.37.0
CLI command timeouts (flag `--timeout`) now limit the total command execution
Expand All @@ -42,6 +50,10 @@ Subnets support has been removed:
- `neoofs-amd morph` does not have `subnet` subcommand anymore.
- `neofs-cli container create` does not have `--subnet` flag anymore.

Docker images now contain a single executable file and SSL certificates only.

`neofs-cli control healthcheck` exit code is `0` only for "READY" state.

## [0.37.0] - 2023-06-15 - Sogado

### Added
Expand Down
Loading

0 comments on commit 581b7a2

Please sign in to comment.