When exporting a pipeline from the v1 you must include_job because when importing the pipeline we search for the job name in the jobs property of the pipeline from the job list of the v2. and since we export pipeline from v1, the jobs that contains are from v1. so if we don t export them from v1, the import will not find them.
How?
We set include_jobto true if we use projectsExportV1code simulation
Why ?
We want to make the option
include_jobs
set to true when imported from v1.Links / Ressources
https://github.com/saagie/gradle-saagie-dataops-plugin/issues/259
Actual status / Investigations
When exporting a pipeline from the v1 you must
include_job
because when importing the pipeline we search for the job name in the jobs property of the pipeline from the job list of the v2. and since we export pipeline from v1, the jobs that contains are from v1. so if we don t export them from v1, the import will not find them.How?
We set
include_job
totrue
if we useprojectsExportV1
code simulation