Skip to content

Commit

Permalink
Debug #1133
Browse files Browse the repository at this point in the history
  • Loading branch information
chadwhitacre committed Nov 2, 2021
1 parent c16ae02 commit c1b92ae
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 42 deletions.
24 changes: 0 additions & 24 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,32 +20,8 @@ x-sentry-defaults: &sentry_defaults
depends_on:
redis:
<<: *depends_on-healthy
kafka:
<<: *depends_on-healthy
postgres:
<<: *depends_on-healthy
memcached:
<<: *depends_on-default
smtp:
<<: *depends_on-default
snuba-api:
<<: *depends_on-default
snuba-consumer:
<<: *depends_on-default
snuba-outcomes-consumer:
<<: *depends_on-default
snuba-sessions-consumer:
<<: *depends_on-default
snuba-transactions-consumer:
<<: *depends_on-default
snuba-subscription-consumer-events:
<<: *depends_on-default
snuba-subscription-consumer-transactions:
<<: *depends_on-default
snuba-replacer:
<<: *depends_on-default
symbolicator:
<<: *depends_on-default
entrypoint: "/etc/sentry/entrypoint.sh"
command: ["run", "web"]
environment:
Expand Down
17 changes: 0 additions & 17 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,4 @@ source "$(dirname $0)/install/_lib.sh" # does a `cd .../install/`, among other

source parse-cli.sh
source error-handling.sh
source check-minimum-requirements.sh
source create-docker-volumes.sh
source ensure-files-from-examples.sh
source generate-secret-key.sh
source replace-tsdb.sh
source update-docker-images.sh
source build-docker-images.sh
source turn-things-off.sh
source set-up-zookeeper.sh
source install-wal2json.sh
source bootstrap-snuba.sh
source create-kafka-topics.sh
source upgrade-postgres.sh
source set-up-and-migrate-database.sh
source migrate-file-storage.sh
source relay-credentials.sh
source geoip.sh
source wrap-up.sh
4 changes: 3 additions & 1 deletion install/set-up-and-migrate-database.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ if [[ -n "${CI:-}" || "${SKIP_USER_PROMPT:-0}" == 1 ]]; then
echo " docker-compose run --rm web createuser"
echo ""
else
$dcr web upgrade
cmd="docker compose --ansi never run --rm web upgrade"
echo "$cmd"
$cmd
fi

echo "${_endgroup}"

0 comments on commit c1b92ae

Please sign in to comment.