Skip to content

Commit

Permalink
build: add pv-migrator binary to rook image in 1.7.x branch
Browse files Browse the repository at this point in the history
Adding  add pv-migrator binary to rook image directly
in 1.7.x branch as discussed.

Signed-off-by: subhamkrai <srai@redhat.com>
  • Loading branch information
subhamkrai committed Nov 30, 2021
1 parent a9cda1e commit c54854d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion images/ceph/Dockerfile
Expand Up @@ -20,7 +20,11 @@ ARG TINI_VERSION

# Run tini as PID 1 and avoid signal handling issues
RUN curl --fail -sSL -o /tini https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-${ARCH} && \
chmod +x /tini
chmod +x /tini && \
curl -LJO https://github.com/ceph/persistent-volume-migrator/releases/download/v0.1.0-alpha/pv-migrator && \
chmod +x pv-migrator && \
install pv-migrator usr/local/bin/pv-migrator && \
rm pv-migrator

COPY rook rookflex toolbox.sh set-ceph-debug-level /usr/local/bin/
COPY ceph-csi /etc/ceph-csi
Expand Down

0 comments on commit c54854d

Please sign in to comment.