Created
September 28, 2023 06:47
-
-
Save digitaltrails/0575e4395940ab9c920ef6e22d8dfc3f to your computer and use it in GitHub Desktop.
SUSE OpenSUSE relationships
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
digraph G { | |
fontname="Helvetica,Arial,sans-serif" | |
node [fontname="Helvetica,Arial,sans-serif", style=bold] | |
edge [fontname="Helvetica,Arial,sans-serif", style=bold] | |
subgraph cluster_0 { | |
color="red"; | |
label=" SUSE "; | |
SLE [shape=box, color=red, label=" SUSE Linux Enterprise ", ordering="out"]; | |
SLES [shape=box, color=red, label=" SLE Server "]; | |
SLED [shape=box, color=red, label=" SLE Desktop "]; | |
SLEMIC [shape=box, color=red, label=" SLE Micro\n(containerized) "]; | |
SLEV [shape=box, color=red, label=" SLE Linux RT, HPC, ..."]; | |
SLE -> {SLES, SLED, SLEMIC, SLEV} [color=red]; | |
ALP [shape=box, color=red, style="dashed", label=" SUSE Adaptable Linux Platform\n(containerized) "]; | |
BEDROCK [shape=box, color=red, style="dashed", label=" ALP Bedrock server "]; | |
ALPMICRO [shape=box, color=red, style="dashed", label=" ALP Micro cloud-native "]; | |
SLEMIC -> ALP [color=grey, style="dashed"]; | |
ALP -> BEDROCK [color=grey, style="dashed"]; | |
ALP -> ALPMICRO [color=grey, style="dashed"]; | |
#SLE -> SLIB [style=invis]; | |
#SLIB [shape=box, color=red, label=" SUSE Liberty Linux ", ordering="out"] | |
} | |
subgraph cluster_1 { | |
color="green"; | |
label=" OpenSUSE "; | |
LEAP [shape=box, color=green, label=" OpenSUSE Leap "] | |
LEAPMICRO [shape=box, color=green, label=" OpenSUSE Leap Micro\n(containerized) "]; | |
SLE -> LEAP [color=green]; | |
LEAP -> LEAPMICRO [color=green]; | |
FACTORY [shape=box, color=grey, label=" OpenSUSE Factory "]; | |
TUMBLEWEED [shape=box, color=green, label=" OpenSUSE Tumbleweed "]; | |
SLOWROLL [shape=box, color=green, style="dashed", label=" OpenSUSE Slowroll "]; | |
SLOWRMIC [shape=box, color=green, style="dashed", label=" OpenSUSE Slowroll Micro\n(containerized) "]; | |
FACTORY -> TUMBLEWEED [color=green]; | |
TUMBLEWEED -> SLOWROLL [color=green]; | |
SLOWROLL -> SLOWRMIC [color=green, style="dashed"]; | |
TUMBLEWEED -> LEAP [style=invis]; | |
TUMBLEWEED -> SLE [color=grey]; | |
MICRO [shape=box, color=green, label=" OpenSUSE MicroOS\n(containerized server)" ]; | |
AEON [shape=box, color=green, label=" OpenSUSE Aeon (MicroOS Gnome) " ]; | |
KALPA [shape=box, color=green, style="dashed", label=" OpenSUSE Kalpa (MicroOS KDE) "]; | |
MICRO -> {AEON, KALPA} [color=green]; | |
TUMBLEWEED -> MICRO [color=green]; | |
MICRO -> ALP [color=grey, style="dashed"]; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment