Currently concourse does not support moving pipelines between teams via fly CLI. There is an issue for that here
The only way to do this is to make a few changes in the DB.
If you run the statement below you will see that 6 tables have the team_id
column.
concourse=> select table_name from INFORMATION_SCHEMA.COLUMNS where column_name = 'team_id';;
from INFORMATION_SCHEMA.COLUMNS
where column_name = 'team_id';
If you describe the tables \d+ pipelines
you can see the column is present.
Run a quick select * from pipelines limit 5
to examine what the data is like.
If you do this for the rest of the tables, it becomes apparant that the only tables you need to edit are pipelines
, and builds
.
This will move your pipeline definitions and your historic builds over correctly, and everything will carry on working.
If you want to move all your pipelines from team main to team new (lets say it has an id of 3) you would just run the following statements:
update pipelines set team_id = 3 where team_id = 1;
update builds set team_id = 3 where team_id = 1;
This will move all of your pipelines that belong to team 1 to team 3.
However, you might want to split your pipelines into multiple teams so find all the pipeline names that share a prefix, using something like
select * from pipelines where name ~ 'shared';
or just find the ids if they dont follow a convention and run something like this
update builds set team_id = 2 where pipeline_id in (3,6,8,12,43,44,21,22);
You can run a similar statement for the pipelines too.
This worked for me on Concourse 4.2.2. Thank you! 👍 ❤️