I really like the idea what armory has done for pipeline as code for spinnaker. I want to implement something of similar sort. Can someone explain how they might be doing this ?
https://docs.armory.io/user-guides/dinghy/
{
"application": "yourspinnakerapplicationname",
"pipelines": [
{
"application": "yourspinnakerapplicationname",
"keepWaitingPipelines": false,
"limitConcurrent": true,
"name": "Made By Armory Pipeline Templates",
"stages": [
{{ module "wait.stage.module" }} // Module created in dinghy-templates repo
],
"triggers": []
}
]
}
Have they created custom jinja extensions for module ? If someone could breakdown on how they are able to achieve this as a starting point for me, that would be really helpful