Copy Airflow pools from one Astro Deployment to another. Airflow pools are stored in the target Deployment’s metadata database and appear in the Airflow UI.
This command only copies Airflow pools that were configured through the Airflow UI or otherwise stored in the Airflow metadata database.
This command is recommended for automated workflows. To run this command in an automated process such as a CI/CD pipeline, you can generate an API token, then specify the ASTRO_API_TOKEN environment variable in the system running the Astro CLI:
# copy pools stored in the Deployment with an ID of cl03oiq7d80402nwn7fsl3dmv to a deployment with an ID of cl03oiq7d80402nwn7fsl3dcdastro deployment pool copy --source-id cl03oiq7d80402nwn7fsl3dmv --target cl03oiq7d80402nwn7fsl3dcd# copy pools stored in the Deployment "My Deployment" to another Deployment "My Other Deployment"astro deployment pool copy --source-name="My Deployment" --target-name="My Other Deployment"