Skip to content

Instantly share code, notes, and snippets.

@dlorenc
Created July 23, 2021 15:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dlorenc/add11456d00651058fa7ef7861a2ba12 to your computer and use it in GitHub Desktop.
Save dlorenc/add11456d00651058fa7ef7861a2ba12 to your computer and use it in GitHub Desktop.
digraph G {
SCM [label="SCM repo" shape="cylinder"]
buildsystem [label="build system" shape="cds"]
artifact [label="artifact" shape="component"]
provenance [label="provenance record" shape="note"]
policy [label="policy engine"]
subgraph cluster_prod {
label="prod"
policy
nodes [label="nodes" shape="rect"]
}
SCM->buildsystem [label="fetch"]
buildsystem->artifact [label="build"]
buildsystem->provenance [label="generate"]
provenance->policy [label="attempt to deploy"]
artifact->policy [label="evaluate"]
policy->nodes [label="allow deployment"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment