Skip to content

Commit

Permalink
feat(devservices): Add several new devservices modes (#83452)
Browse files Browse the repository at this point in the history
These new modes will help support devservices for more use cases

**memcached**: This will allow users to run sentry whilst connecting
when using the memcached backend
**symbolicator**: This brings up sentry with symbolicator running
**minimal**: These are the services that are the bare minimum for
running sentry
**full**: This mode brings up pretty much most things needed for sentry
development (symbolicator, vroom, relay, rabbitmq, taskbroker)
  • Loading branch information
hubertdeng123 authored Jan 15, 2025
1 parent 5caa971 commit b8f60f5
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions devservices/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ x-sentry-service-config:
branch: master
repo_link: https://github.com/getsentry/symbolicator.git
mode: default
vroom:
description: Sentry's profiling service, processing and deriving data about your profiles
remote:
repo_name: vroom
branch: main
repo_link: https://github.com/getsentry/vroom.git
mode: default
bigtable:
description: Bigtable emulator
redis-cluster:
Expand All @@ -51,13 +58,32 @@ x-sentry-service-config:
mode: containerized
rabbitmq:
description: Messaging and streaming broker
memcached:
description: Memcached used for caching

modes:
default: [snuba, postgres, relay]
migrations: [postgres, redis]
acceptance-ci: [postgres, snuba, chartcuterie]
taskbroker: [snuba, postgres, relay, taskbroker]
backend-ci: [snuba, postgres, redis, bigtable, redis-cluster, symbolicator]
rabbitmq: [postgres, snuba, rabbitmq]
symbolicator: [postgres, snuba, symbolicator]
memcached: [postgres, snuba, memcached]
profiling: [postgres, snuba, vroom]
minimal: [postgres, snuba]
full:
[
postgres,
snuba,
relay,
redis,
redis-cluster,
symbolicator,
taskbroker,
rabbitmq,
vroom,
]

services:
postgres:
Expand Down Expand Up @@ -125,6 +151,14 @@ services:
- host.docker.internal:host-gateway
environment:
- IP=0.0.0.0
memcached:
image: ghcr.io/getsentry/image-mirror-library-memcached:1.5-alpine
ports:
- '127.0.0.1:11211:11211'
networks:
- devservices
extra_hosts:
- host.docker.internal:host-gateway

networks:
devservices:
Expand Down

0 comments on commit b8f60f5

Please sign in to comment.