Skip to content

Commit ca84697

Browse files
committed
repo layout update to readme
1 parent cda8dca commit ca84697

File tree

1 file changed

+49
-0
lines changed

1 file changed

+49
-0
lines changed

profile/README.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,52 @@
33
## Example organisation supporting the Appvia [Policy as \[Versioned\] Code](https://www.appvia.io/blog/policy-as-versioned-code) blog post
44

55
![policy as code image](https://www.appvia.io/media/pages/blog/policy-as-versioned-code/fabcbcd5e7-1644312735/policy-1200x.jpg)
6+
7+
## Repositories
8+
9+
![Repo Layout](https://g.gravizo.com/svg?
10+
digraph G {
11+
policy [shape=cylinder]
12+
13+
policy100 [label="@1.0.0", shape=cds]
14+
policy200 [label="@2.0.0", shape=cds]
15+
policy201 [label="@2.0.1", shape=cds]
16+
17+
policy -> policy100,policy200,policy201 [color="yellow", arrowType="none"]
18+
app1 [shape=cylinder]
19+
app2 [shape=cylinder]
20+
app3 [shape=cylinder]
21+
infra1 [shape=cylinder]
22+
infra2 [shape=cylinder]
23+
infra3 [shape=cylinder]
24+
e2e [shape=cylinder]
25+
policychecker [shape=cylinder,label="policy-checker"]
26+
27+
app1,app2,app3,infra1,infra2,infra3 -> policychecker
28+
29+
app1 -> policy100 [color=green]
30+
app1 -> policy200,policy201 [color=red,style=dashed]
31+
32+
app2 -> policy201 [color=green]
33+
app2 -> policy100,policy200 [color=orange,style=dashed]
34+
35+
app3 -> policy100 [color=green]
36+
app3 -> policy200,policy200 [color=orange,style=dashed]
37+
38+
e2e -> policy100,policy200,policy201
39+
40+
subgraph cluster_01 {
41+
node [shape=plaintext]
42+
rankdir=LR;
43+
label = "Legend"
44+
45+
start1,start2,start3,start4,end1,end2,end3,end4 [style=invisible]
46+
47+
start1 -> end1 [label="Dependent\non"]
48+
start2 -> end2 [label="Compliant\nwith", color=green]
49+
start3 -> end3 [label="Not-compliant\nwith", color=red]
50+
start4 -> end4 [label="Child\nof", color="yellow"]
51+
52+
}
53+
}
54+
)

0 commit comments

Comments
 (0)