seaweedfs/docker/entrypoint.sh

70 lines
1.4 KiB
Bash
Raw Normal View History

#!/bin/sh
2020-10-08 10:40:18 +00:00
isArgPassed() {
arg="$1"
argWithEqualSign="$1="
shift
while [ $# -gt 0 ]; do
passedArg="$1"
shift
case $passedArg in
$arg)
return 0
;;
$argWithEqualSign*)
return 0
;;
esac
done
return 1
}
case "$1" in
'master')
2020-03-23 01:35:45 +00:00
ARGS="-mdir=/data -volumePreallocate -volumeSizeLimitMB=1024"
shift
2022-02-27 10:44:10 +00:00
exec /usr/bin/weed -logtostderr=true master $ARGS $@
;;
'volume')
2020-03-23 01:35:45 +00:00
ARGS="-dir=/data -max=0"
2020-10-08 10:40:18 +00:00
if isArgPassed "-max" "$@"; then
ARGS="-dir=/data"
fi
shift
2022-02-27 10:44:10 +00:00
exec /usr/bin/weed -logtostderr=true volume $ARGS $@
;;
'server')
ARGS="-dir=/data -volume.max=0 -master.volumePreallocate -master.volumeSizeLimitMB=1024"
2020-10-08 10:40:18 +00:00
if isArgPassed "-volume.max" "$@"; then
ARGS="-dir=/data -master.volumePreallocate -master.volumeSizeLimitMB=1024"
fi
shift
2022-02-27 10:44:10 +00:00
exec /usr/bin/weed -logtostderr=true server $ARGS $@
;;
'filer')
ARGS=""
shift
2022-02-27 10:44:10 +00:00
exec /usr/bin/weed -logtostderr=true filer $ARGS $@
;;
2018-12-16 23:40:52 +00:00
's3')
2018-12-25 22:27:48 +00:00
ARGS="-domainName=$S3_DOMAIN_NAME -key.file=$S3_KEY_FILE -cert.file=$S3_CERT_FILE"
shift
2022-02-27 10:44:10 +00:00
exec /usr/bin/weed -logtostderr=true s3 $ARGS $@
2018-12-16 23:40:52 +00:00
;;
'shell')
ARGS="-cluster=$SHELL_CLUSTER -filer=$SHELL_FILER -filerGroup=$SHELL_FILER_GROUP -master=$SHELL_MASTER -options=$SHELL_OPTIONS"
shift
exec echo "$@" | /usr/bin/weed -logtostderr=true shell $ARGS
;;
*)
exec /usr/bin/weed $@
;;
esac