5
0
mirror of git://git.proxmox.com/git/pve-docs.git synced 2025-01-22 22:03:47 +03:00

pve-patch-process.tt: another graphviz example graph

Not used currently.
This commit is contained in:
Dietmar Maurer 2018-08-17 12:25:22 +02:00
parent d00b6482df
commit beb0ab8082

View File

@ -0,0 +1,40 @@
digraph pve_path_process {
node [
shape=record
fontname="Helvetica"
style="rounded,filled"
fillcolor="#00617F"
fontcolor="white"
width=2.5
]
edge [ color="#FF9100" ]
subgraph cluster1 {
fontname="Helvetica"
fontsize=24
style="rounded"
label="\nPatch Process Proxmox VE"
start [style="invisible" fixedsize=true width=6 height=0]
start -> setup
setup [label="Set up GIT repositories"]
discuss [label="Discuss your plans"]
develop [label="Develop the feature/fix"]
test [label="Test it (regressions?)"]
send [label="Send to 'pve-devel'"]
wait [label="Wait for review"]
merge [label="Merge into upstream"]
setup -> discuss
discuss:w -> develop
develop -> test
test -> send
send -> wait:w
wait -> merge
wait:e -> discuss:e
}
}