Migrate from Shipyard​Migrate from ​Shipyard

Migrate from Shipyard to Kestra.

This is a guide for users who are considering migration of their workflows from Shipyard to Kestra.

Kestra is a language-agnostic orchestration platform allowing users to build workflows as code and from the UI. Similarly to Shipyard, Kestra leverages YAML for the definition of workflow logic and the extensive plugin ecosystem in Kestra makes the migration straightforward.

Technical Glossary

Shipyard ConceptEquivalent Concept in KestraDescription
FleetFlowa container for tasks, their inputs, outputs, handling of errors and overall orchestration logic
VesselTaska discrete action within a flow, capable of taking inputs and variables from the flow, and producing outputs for downstream consumption by end users and other tasks
ProjectNamespacea logical grouping of flows, used to organize workflows and manage access to secrets, plugin defaults and variables
TriggersTriggersa mechanism that automates the execution of a flow; triggers can be scheduled or event-based
BlueprintsBlueprintsa collection of premade templates ready to be used in your workflows; Blueprints work very similarly between both platforms — the main difference is that Shipyard's blueprints are like plugins in kestra since they are used to run a task (vessel). Kestra's blueprints are more comprehensive, they often contain multiple tasks composed together to accomplish some use case end-to-end.
InputsInputsa list of dynamic values passed to the flow at runtime; the main difference between both is that Shipyard's inputs are provided to the task (i.e. vessel), while Kestra's inputs are defined at a flow (i.e. fleet) level
UIUIShipyard's UI allows building workflows via drag-and-drop and autogenerates a YAML configuration; in Kestra, users typically write the YAML configuration first and then they can optionally modify the workflow or add new tasks from low-code UI forms.

Getting Started with Kestra

To get started, follow the Quickstart Guide to install Kestra and start building your first workflows.

How to Migrate

Every fleet in Shipyard generates a YAML configuration. You can retrieve it from the UI as shown below, or get it from the version control system like Git in case you maintained one for Shipyard.

shiypard_yaml_configuration

For every vessel in the fleet, try to find a matching Kestra Plugin. For example, the equivalent of Amazon S3 - Delete Files vessel in Shipyard will be io.kestra.plugin.aws.s3.Delete and io.kestra.plugin.aws.s3.DeleteList.

In the same fashion as you would configure a vessel, you can configure a task in Kestra. Use the built-it task documentation in the Kestra UI to help you configure all task properties (the Source and documentation view). You can easily find plugins directly within the built-in UI editor by using the auto-complete feature. Each task documentation comes with an example and a detailed description of each task property.

documentation_view

There is no concept of connections in Kestra. By default, all tasks are executed sequentially. To adjust the execution logic e.g. to run some tasks in parallel, wrap your tasks in flowable tasks. As always, the combination of our core documentation, Plugin documentation and Blueprints will help you figure out how to do that.

Once you have the fleet equivalent (i.e. a flow) ready in Kestra, you can use the Source and topology view to validate whether your Kestra flow matches the connections in your Shipyard fleet.

topology_view

You can now Save and Execute your flow. Then, check the Logs, Gantt and Outputs tab of your Execution to validate that your workflow behaves as expected.

Need Help?

Check out our extensive plugin catalog for descriptions and examples of each task and trigger.

Use our blueprints for guidance on creating various flows.

For assistance, join our free Slack community and ask your questions in the #help channel. We respond to every message!

Was this page helpful?