"Dot" /graphviz source code of graph used to create the image of the deployment triangle at http://nschoenmaker.nl/2013/02/technical-solution-to-a-social-problem
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 deployment_triangle { | |
subgraph same_ranking_subgraph { | |
rank = same; | |
deployed; | |
master; | |
} | |
deployed -> "target tag" -> master -> "target tag" -> deployed -> master -> deployed | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment