forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
service-catalog.yaml
58 lines (55 loc) · 1.43 KB
/
service-catalog.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# This is the source of truth for services dependencies of Sourcegraph. All names
# should correspond to published images.
#
# 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
# other stuff we just know about
- search-indexer
- indexed-searcher
# observability
- prometheus
# $ go run ./dev/depgraph/ summary internal/redispool
# $ go run ./dev/depgraph/ summary internal/rcache
# union of all dependent commands
redis:
consumers:
- blobstore
- frontend
- gitserver
- migrator
- repo-updater
- searcher
- symbols
- worker
# observability
- prometheus
- redis-exporter
# $ 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
# observability
- prometheus
- postgres-exporter