forked from Flank/flank-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconcept_map.puml
65 lines (47 loc) · 1.13 KB
/
concept_map.puml
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
59
60
61
62
63
64
65
@startuml metrics_concept_map
skinparam DefaultTextAlignment left
skinparam database {
borderColor #292618
backgroundColor #fed100
}
skinparam cloud {
borderColor #002366
backgroundColor #007FFF
fontColor white
}
skinparam rectangle {
borderColor #182b27
backgroundColor #20ce9a
roundCorner 10
}
skinparam ArrowColor #4f4f56
cloud Jenkins
cloud "GitHub Actions" as GA
cloud Buildkite
rectangle "CI integrations" as CI
together {
node Firebase {
cloud Hosting
database Firestore
cloud Authentication
}
rectangle Core
}
rectangle Web
Jenkins -[hidden]right-> GA
GA -[hidden]right-> Buildkite
Jenkins -down-> CI : data
GA -down-> CI : data
Buildkite -down-> CI : data
CI -down-> Firestore : sync data
CI -down-> Authentication : authenticates
CI -[hidden]down-> Hosting
Hosting -[hidden]right-> Authentication
Authentication -[hidden]right-> Firestore
Firebase -[hidden]right-> Core
Web -up-> Firestore : reads metrics and \l stores app config
Web -up-> Authentication : authenticates
Web -up-> Hosting : deployed on
Web --right--> Core : uses
CI --right--> Core : uses
@enduml