Skip to content

Commit

Permalink
docker: add storage_scrubber into the docker image (#8239)
Browse files Browse the repository at this point in the history
## Problem

We will run this tool in the k8s cluster. To make it accessible from
k8s, we need to package it into the docker image.

part of neondatabase/cloud#14024
  • Loading branch information
skyzh committed Jul 3, 2024
1 parent 4a0c2ae commit 4273309
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ RUN set -e \
--bin storage_controller \
--bin proxy \
--bin neon_local \
--bin storage_scrubber \
--locked --release \
&& cachepot -s

Expand All @@ -83,6 +84,7 @@ COPY --from=build --chown=neon:neon /home/nonroot/target/release/storage_broker
COPY --from=build --chown=neon:neon /home/nonroot/target/release/storage_controller /usr/local/bin
COPY --from=build --chown=neon:neon /home/nonroot/target/release/proxy /usr/local/bin
COPY --from=build --chown=neon:neon /home/nonroot/target/release/neon_local /usr/local/bin
COPY --from=build --chown=neon:neon /home/nonroot/target/release/storage_scrubber /usr/local/bin

COPY --from=pg-build /home/nonroot/pg_install/v14 /usr/local/v14/
COPY --from=pg-build /home/nonroot/pg_install/v15 /usr/local/v15/
Expand Down

1 comment on commit 4273309

@github-actions
Copy link

@github-actions github-actions bot commented on 4273309 Jul 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

3094 tests run: 2970 passed, 0 failed, 124 skipped (full report)


Flaky tests (1)

Postgres 14

  • test_basebackup_with_high_slru_count[github-actions-selfhosted-sequential-10-13-30]: release

Code coverage* (full report)

  • functions: 32.7% (6933 of 21213 functions)
  • lines: 50.0% (54336 of 108576 lines)

* collected from Rust tests only


The comment gets automatically updated with the latest test results
4273309 at 2024-07-03T11:44:32.883Z :recycle:

Please sign in to comment.