You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by kt...@apache.org on 2019/06/19 20:06:21 UTC

[accumulo-testing] branch master updated: add gcs to docker

This is an automated email from the ASF dual-hosted git repository.

kturner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo-testing.git


The following commit(s) were added to refs/heads/master by this push:
     new b227c60  add gcs to docker
b227c60 is described below

commit b227c60309dacc4fb4ae3821a8457f54ccd77d4d
Author: Keith Turner <kt...@apache.org>
AuthorDate: Wed Jun 19 16:06:03 2019 -0400

    add gcs to docker
---
 Dockerfile                   | 1 +
 src/main/docker/docker-entry | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/Dockerfile b/Dockerfile
index d543d8e..2437f66 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -42,6 +42,7 @@ RUN touch /opt/at/conf/env.sh
 
 COPY ./bin/cingest /opt/at/bin
 COPY ./bin/rwalk /opt/at/bin
+COPY ./bin/gcs /opt/at/bin
 COPY ./src/main/docker/docker-entry /opt/at/bin
 
 COPY ./target/accumulo-testing-shaded.jar /opt/at/
diff --git a/src/main/docker/docker-entry b/src/main/docker/docker-entry
index 6f23e00..3b05bd5 100755
--- a/src/main/docker/docker-entry
+++ b/src/main/docker/docker-entry
@@ -27,6 +27,7 @@ Usage: accumulo-testing <script> (<argument>)
 
   cingest     Runs continuous ingest script
   rwalk       Runs random walk script
+  gcs         Runs garbage collection simulation
 EOF
 }
 
@@ -42,7 +43,7 @@ if [ -z "$HADOOP_HOME" ]; then
 fi
 
 case "$1" in
-  cingest|rwalk)
+  cingest|rwalk|gcs)
     "${at_home}"/bin/"$1" "${@:2}"
     ;;
   -h|help)