Reputation: 161
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?
Upvotes: 1
Views: 168
Reputation: 677
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 pipelineversion
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.
Upvotes: 0