Sync runner checkout / sync (pull_request) Successful in 6s
Closes #33. Deploy skips host_apps.enabled: false so CI cannot resurrect a stopped app.
96 lines
2.1 KiB
Bash
Executable File
96 lines
2.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
cd "$REPO_ROOT"
|
|
|
|
LIMIT=""
|
|
EXTRA_ARGS=()
|
|
EXTRA_VARS=()
|
|
APP=""
|
|
APP_ENV=""
|
|
|
|
usage() {
|
|
cat <<EOF
|
|
Usage: $(basename "$0") [HOST] --app NAME --env ENV [OPTIONS]
|
|
|
|
Stop a docker-compose app (compose down). Inverse of deploy.sh.
|
|
|
|
Does not remove volumes, checkouts, or secrets. Next deploy.sh of the same
|
|
app+env will start it again unless host_apps sets enabled: false.
|
|
|
|
Node-static apps have no compose project — stop.sh skips them.
|
|
|
|
HOST Optional. Limit to one host: adama, roslin, starbuck, apollo, or ai-server-4080.
|
|
|
|
Options:
|
|
--app NAME Required. App to stop (same names as deploy.sh)
|
|
--env ENV Required. Environment: beta or prod
|
|
--check Dry run
|
|
--diff Show diffs
|
|
--extra-vars V Pass raw extra vars
|
|
-h, --help Show this help
|
|
|
|
Examples:
|
|
$(basename "$0") --app print_forge --env prod
|
|
$(basename "$0") --app print_forge --env beta
|
|
$(basename "$0") adama --app chat_backend --env beta --check
|
|
EOF
|
|
}
|
|
|
|
while [[ $# -gt 0 ]]; do
|
|
case "$1" in
|
|
-h|--help)
|
|
usage
|
|
exit 0
|
|
;;
|
|
--app)
|
|
APP="$2"
|
|
EXTRA_VARS+=(-e "app=$2")
|
|
shift 2
|
|
;;
|
|
--env)
|
|
APP_ENV="$2"
|
|
EXTRA_VARS+=(-e "app_env=$2")
|
|
shift 2
|
|
;;
|
|
--check)
|
|
EXTRA_ARGS+=(--check)
|
|
shift
|
|
;;
|
|
--diff)
|
|
EXTRA_ARGS+=(--diff)
|
|
shift
|
|
;;
|
|
--extra-vars)
|
|
EXTRA_VARS+=(-e "$2")
|
|
shift 2
|
|
;;
|
|
adama|roslin|starbuck|apollo|ai-server-4080)
|
|
LIMIT="$1"
|
|
shift
|
|
;;
|
|
*)
|
|
echo "Unknown argument: $1" >&2
|
|
usage >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
|
|
if [[ -z "$APP" || -z "$APP_ENV" ]]; then
|
|
echo "error: --app and --env are required" >&2
|
|
usage >&2
|
|
exit 1
|
|
fi
|
|
|
|
CMD=(ansible-playbook playbooks/stop-apps.yml "${EXTRA_ARGS[@]}" "${EXTRA_VARS[@]}")
|
|
if [[ -n "$LIMIT" ]]; then
|
|
CMD+=(--limit "$LIMIT")
|
|
echo "==> Stopping ${APP}/${APP_ENV} on: $LIMIT"
|
|
else
|
|
echo "==> Stopping ${APP}/${APP_ENV} on all webservers"
|
|
fi
|
|
|
|
exec "${CMD[@]}"
|