-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update irodsfs and irodsfs-pool, update configuration
- Loading branch information
Showing
14 changed files
with
59 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,12 +11,19 @@ LABEL maintainer="Illyoung Choi <[email protected]>" | |
LABEL version="0.1" | ||
LABEL description="iRODS CSI Driver Pool Image" | ||
|
||
ARG IRODS_FUSE_POOL_SERVER_DIR="/opt/irodsfs-pool" | ||
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
# Setup Utility Packages | ||
RUN apt-get update && \ | ||
apt-get install -y wget apt-transport-https lsb-release gnupg | ||
apt-get install -y wget curl apt-transport-https lsb-release gnupg | ||
|
||
### Install irodsfs-pool | ||
RUN mkdir -p /tmp/irodsfs-pool && \ | ||
mkdir -p /var/lib/irodsfs-pool | ||
RUN curl -L https://github.com/cyverse/irodsfs-pool/releases/download/v0.6.3/irodsfs-pool-v0.6.3-linux-amd64.tar.gz --output /tmp/irodsfs-pool/irodsfs-pool.tar.gz | ||
RUN tar zxvf /tmp/irodsfs-pool/irodsfs-pool.tar.gz -C /tmp/irodsfs-pool && \ | ||
cp /tmp/irodsfs-pool/irodsfs-pool /usr/bin && \ | ||
rm -rf /tmp/irodsfs-pool | ||
|
||
### Install dumb-init | ||
ADD https://github.com/Yelp/dumb-init/releases/download/v1.2.5/dumb-init_1.2.5_x86_64 \ | ||
|
@@ -25,7 +32,4 @@ RUN chmod +x /usr/bin/dumb-init | |
|
||
WORKDIR /opt/ | ||
|
||
# Setup iRODS FUSE Lite Pool Server | ||
COPY --from=irods_csi_driver_pool_build:latest ${IRODS_FUSE_POOL_SERVER_DIR}/bin/irodsfs-pool /usr/bin/irodsfs-pool | ||
|
||
ENTRYPOINT ["/usr/bin/dumb-init", "--", "/usr/bin/irodsfs-pool", "-f"] | ||
ENTRYPOINT ["/usr/bin/dumb-init", "--", "/usr/bin/irodsfs-pool", "-f", "--data_root", "/var/lib/irodsfs-pool"] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters