How to export and import Bamboo plan across different Bamboo instances
This article explains how to export and import Bamboo plan across different Bamboo instances using Bamboo Command Line Interface (CLI).
Instructions
In source Bamboo instance, combine exportPlan action with plan, file, and type parameters to export Bamboo plan.
--action exportPlan --plan TRAINING-BB --file export.txt --type CLIIn destination Bamboo instance, combine run action with file parameter to import the plan and use above exported file as value for file parameter.
--action run --file export.txt
It is recommended to test this scenario in a test environment or run the action with the --simulate parameter to verify the behavior before deploying.