storj/cmd/satellite/entrypoint
Jess G 8d92c288e2
satellitedb: separate migration into subcommand (#3436)
* separate sadb migration, add version check

* update checkversion to do same validation as migration

* changes per CR

* add sa migration to storj-sim

* add different debug port in storj-sim for migration

* add wait for exit for storj-sim migration

* update sa docker entrypoint to support migration

* storj-sim satellite parts all wait for migration

* upgrade golang-migrate/migrate to v4 because bug

* fix go mod tidy
2019-11-02 13:09:07 -07:00

41 lines
935 B
Bash
Executable File

#!/bin/sh
set -euo pipefail
SETUP_PARAMS=""
if [[ -n "${API_KEY:-}" ]]; then
export STORJ_POINTER_DB_AUTH_API_KEY="${API_KEY}"
export STORJ_AUDIT_API_KEY="${API_KEY}"
export STORJ_POINTER_DB_AUTH_API_KEY="${API_KEY}"
export STORJ_REPAIRER_API_KEY="${API_KEY}"
fi
if [[ -n "${STORJ_DATABASE:-}" ]]; then
export STORJ_POINTER_DB_DATABASE_URL="${STORJ_DATABASE}"
fi
if [[ -n "${IDENTITY_ADDR:-}" ]]; then
export STORJ_SERVER_ADDRESS="${IDENTITY_ADDR}"
fi
if [[ ! -f "${CONF_PATH}/config.yaml" ]]; then
./satellite setup $SETUP_PARAMS
fi
RUN_PARAMS="${RUN_PARAMS:-} --config-dir ${CONF_PATH}"
if [ "${SATELLITE_MIGRATE:-}" = "true" ]; then
exec ./satellite run migration $RUN_PARAMS "$@"
fi
if [ "${SATELLITE_API:-}" = "true" ]; then
exec ./satellite run api $RUN_PARAMS "$@"
fi
if [ "${SATELLITE_REPAIR:-}" = "true" ]; then
exec ./satellite run repair $RUN_PARAMS "$@"
fi
exec ./satellite run $RUN_PARAMS "$@"