Is there a way to export value stream map in gocd?

159 Views Asked by At

In GoCD pipeline, we can export a pipeline metadata as json or xml. Same way, is it possible to export all the pipelines that belongs to a value stream map?

1

There are 1 best solutions below

0
Ashwanth Kumar On

There's an undocumented API that I use in gocd-janitor.

The API works like this

"/go/pipelines/value_stream_map/" + pipeline + "/" + version + ".json"
  • pipeline is the name of the pipeline
  • version is the pipeline counter for which you need the VSM.

PS: Removing the .json at the end should open the VSM for that pipeline and run in a HTML format.