Concourse CI: make a pipeline public

Posted by ads' corner on Friday, 2017-09-15
Posted in [Software]

Concourse by default hides newly created pipelines from the public. That’s not in the interest of Open Source projects, which want to show the entire build process.

The fly command expose-pipeline will reveal a pipeline, and hide-pipeline will stash it away.

1
fly --target ci expose-pipeline --pipeline example
1
fly --target ci hide-pipeline --pipeline example

A pipeline which is exposed will still not show build logs. For that, every job must be set to public: true as well.

Unfortunately it does not seem to be possible to set the exposure in the pipeline definition itself. Therefore the expose-pipeline command must be re-executed if the pipeline is destroyed and recreated.


Categories: [Software]