-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy patharchitecture.html
More file actions
61 lines (56 loc) · 2.1 KB
/
Copy patharchitecture.html
File metadata and controls
61 lines (56 loc) · 2.1 KB
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
<html>
<body>
<pre class="mermaid">
architecture-beta
service github(logos:github)[GitHub]
group vpc(gravity-ui:nodes-down)[Network Perimeter]
service firewall(clarity:firewall-line)[Firewall] in vpc
group k8s_cluster(logos:kubernetes)[K8S Cluster] in vpc
service ingress(ix:data-ingress)[prevent ingress] in k8s_cluster
service nodeport(carbon:kubernetes-ip-address)[prevent nodeport] in k8s_cluster
service deploy(carbon:kubernetes-pod)[prevent deploy] in k8s_cluster
service secret(codicon:gist-secret)[k8s secret] in k8s_cluster
github:R --> L:firewall
firewall:R --> L:ingress
ingress:B --> T:nodeport
nodeport:B --> T:deploy
deploy:R --> L:secret
</pre>
<script type="module">
import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@11/dist/mermaid.esm.min.mjs';
mermaid.initialize({ startOnLoad: true });
mermaid.registerIconPacks([
{
name: 'logos',
loader: () =>
fetch('https://unpkg.com/@iconify-json/logos@1/icons.json').then((res) => res.json()),
},
{
name: 'clarity',
loader: () =>
fetch('https://unpkg.com/@iconify-json/clarity@1/icons.json').then((res) => res.json()),
},
{
name: 'gravity-ui',
loader: () =>
fetch('https://unpkg.com/@iconify-json/gravity-ui@1/icons.json').then((res) => res.json()),
},
{
name: 'ix',
loader: () =>
fetch('https://unpkg.com/@iconify-json/ix@1/icons.json').then((res) => res.json()),
},
{
name: 'carbon',
loader: () =>
fetch('https://unpkg.com/@iconify-json/carbon@1/icons.json').then((res) => res.json()),
},
{
name: 'codicon',
loader: () =>
fetch('https://unpkg.com/@iconify-json/codicon@1/icons.json').then((res) => res.json()),
},
]);
</script>
</body>
</html>