This repository has been archived by the owner on Jun 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrontline_deploy.dot
84 lines (65 loc) · 1.55 KB
/
frontline_deploy.dot
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
digraph DeployFrontline {
label = "Deploying to Frontline"
labelloc="t";
fontsize = 16
graph [
rankdir = "TB"
];
node [
fontsize = 12
shape = plaintext
];
subgraph cluster1 {
label = "Frontline/Redis"
deployed_branches
deployed_branches:f0 -> deployed_revisions:f1
deployed_branches:f1 -> deployed_revisions:f0
deployed_branches:f2 -> deployed_revisions:f4
}
deploy_request [
shape = plaintext
label = "{ branch: life-3, \nrevision: f7fc4ac,\n index_html: \"<html>\" }"
]
frontline_deploy [
shape = cylinder
label = "frontline_deploy\n(pg_rails)"
]
deployed_branches [
label = "<f0> master | <f1> life-3 | <f2> default | ..."
shape = record
];
deployed_revisions [
label = "<f0> f7fc4... | <f1> sh8a3.. | <f2> p91kw... | <f3> kajfi... | <f4> ij12i... | <f5> adkaso... | ..."
shape = record
];
index_html [
shape = note
label = "index.html\n <cdn_url/app-mjnc71.css>\n <cdn_url/app-jn12b.js>"
]
storage [
shape = cylinder
label = "s3/g-cloud"
]
CDN [
shape = cylinder
]
app_js [
shape = note
label = "app-jn12b.js"
]
app_css [
shape = note
label = "app-mjnc71.css"
]
index_html_memory [
shape = plaintext
label = "<html>\n<cdn_url/app-mjnc71.css>\n<cdn_url/app-jn12b.js>\n</html>"
]
app_js -> storage
app_css -> storage
storage -> CDN
index_html -> CDN
index_html -> deploy_request -> frontline_deploy
frontline_deploy -> deployed_branches:f1
deployed_revisions:f0 -> index_html_memory
}