Multi Project Migration
How to migrate resources from one project to another, on the same system or a different system
Last updated
Was this helpful?
Was this helpful?
bindplane profile set "export" \
--server-url "http://192.168.1.9:3001" \
--api-key "xxxx-xxxx-xxxx-xxxx-xxxxxx"bindplane profile set "import" \
--server-url "http://192.168.1.10:3001" \
--api-key "xxxx-xxxx-xxxx-xxxx-xxxxxx"bindplane profile use "export"touch migration-resources.yaml
bindplane get destination -o yaml --export > "migration-resources.yaml"
bindplane get source -o yaml --export >> "migration-resources.yaml"
bindplane get processor -o yaml --export >> "migration-resources.yaml"
bindplane get extension -o yaml --export >> "migration-resources.yaml"
bindplane get configuration -o yaml --export >> "migration-resources.yaml"bindplane profile use "import"bindplane apply -f "migration-resources.yaml"