mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 13:51:46 +00:00
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
# This is the source of truth for services dependencies of Sourcegraph
|
|
#
|
|
# Cloud started this file to ensure we can correctly maintain Network Policies
|
|
# to ensure only necessary services can talk to each other.
|
|
#
|
|
# This file is not owned by Cloud but the entire engineering department.
|
|
|
|
protected_services:
|
|
# $ go run ./dev/depgraph/ summary internal/gitserver
|
|
# union of all dependent commands
|
|
gitserver:
|
|
consumers:
|
|
- frontend
|
|
- repo-updater
|
|
- searcher
|
|
- symbols
|
|
- worker
|
|
- migrator
|
|
- precise-code-intel-worker
|
|
|
|
# $ go run ./dev/depgraph/ summary internal/redispool
|
|
# $ go run ./dev/depgraph/ summary internal/rcache
|
|
# union of all dependent commands
|
|
redis:
|
|
consumers:
|
|
- blobstore
|
|
- frontend
|
|
- github-proxy
|
|
- gitserver
|
|
- migrator
|
|
- repo-updater
|
|
- searcher
|
|
- sitemap
|
|
- symbols
|
|
- worker
|
|
|
|
# $ go run ./dev/depgraph/ summary internal/database
|
|
# the union of all dependent commands
|
|
postgres:
|
|
consumers:
|
|
- frontend
|
|
- gitserver
|
|
- migrator
|
|
- repo-updater
|
|
- searcher
|
|
- symbols
|
|
- worker
|
|
- precise-code-intel-worker
|