Andrey Brindeyev
Andrey Brindeyev

Reputation: 77

Choose approach for external Jenkins orchestration

I wondering if there is a solution for external Jenkins orchestration or not?

Let me explain our setup first:

When workflow is finished, you need to determine a status: if there was a fatal error (any red build) than workflow must have a failed status.

After workflow if finished, all resources must be freed up: cloud nodes and databases.

Which workflow/process flow tool or library can I utilize to implement such logic?

We have several other pipelines with different flows so it should be flexible.

Current implementation have very complicated logic and several technical jobs which will take care of shared resources. We want to implement that logic in single place: an orchestrator which will be triggering Jenkins jobs externally, feeding them with parameters to run.

Upvotes: 0

Views: 594

Answers (1)

Mark O'Connor
Mark O'Connor

Reputation: 77941

Checkout the Rundeck plugin for jenkins.

Rundeck is an SSH based orchestration tool.

Upvotes: 2

Related Questions