feat: add digitalocean Create and Get Database Cluster components#3748
Merged
forestileao merged 9 commits intosuperplanehq:mainfrom Apr 16, 2026
Merged
Conversation
|
👋 Commands for maintainers:
|
- Implement CreateDatabaseCluster component with setup and execution logic. - Implement GetDatabaseCluster component to retrieve details of existing clusters. - Add tests for both components to ensure correct functionality. - Introduce metadata handling for database clusters. - Update resource listing to include database clusters, versions, and sizes. - Create example output JSON files for both Create and Get Database Cluster actions. - Add corresponding mappers for UI integration in workflow. - Enhance documentation for new components and their expected inputs/outputs. Signed-off-by: WashingtonKK <washingtonkigan@gmail.com>
…figuration in database cluster mappers Signed-off-by: WashingtonKK <washingtonkigan@gmail.com>
Signed-off-by: WashingtonKK <washingtonkigan@gmail.com>
Signed-off-by: WashingtonKK <washingtonkigan@gmail.com>
76afdb0 to
30ff49c
Compare
Signed-off-by: WashingtonKK <washingtonkigan@gmail.com>
…cluster mappers Updated the Node Count assignment in both Create and Get Database Cluster mappers to use nullish coalescing (??) instead of logical OR (||) for better handling of undefined values. Signed-off-by: WashingtonKK <washingtonkigan@gmail.com>
forestileao
reviewed
Apr 15, 2026
Collaborator
forestileao
left a comment
There was a problem hiding this comment.
Just missing frontend tests too
Signed-off-by: WashingtonKK <washingtonkigan@gmail.com>
Signed-off-by: WashingtonKK <washingtonkigan@gmail.com>
Contributor
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit 8eb8b47. Configure here.
forestileao
approved these changes
Apr 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Implements #3736
This expands the DigitalOcean integration by adding the following components:
digitalocean.CreateDatabaseClusterdigitalocean.GetDatabaseClusterNote
Medium Risk
Adds new DigitalOcean API calls and workflow components that provision managed database clusters and poll for readiness, which can impact user workflows if API responses/options handling differ from expectations.
Overview
Adds two new DigitalOcean workflow actions:
digitalocean.createDatabaseCluster(provisions a managed DB cluster and polls untilonline) anddigitalocean.getDatabaseCluster(fetches cluster details).Extends the DigitalOcean client and resource listing to support managed database clusters plus option-driven UI resources (cluster list, engine versions, and size-by-node-count), and wires these into docs, templates, example outputs, and the workflow UI mappers/state registries.
Reviewed by Cursor Bugbot for commit db0d60b. Bugbot is set up for automated code reviews on this repo. Configure here.