8d92c288e2
* 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
41 lines
935 B
Bash
Executable File
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 "$@"
|