DevOps Software

Typically, DevOps is a capability of a variety of other G2 Software categories. See more below to select the

best DevOps Software.

DevOps is more than a singular solution, it is an overarching philosophy that employs multiple software systems. The concept has been developed to bridge the gap between two traditionally siloed teams, development and operations. More specifically, through agile processes, the two teams work together to optimize productivity and deliver better apps and services to customers. As a result of the cross-departmental nature of DevOps, the process requires multiple tools from varying software categories. On the development side, all products in the Continuous Delivery category and subcategories, including Continuous Deployment, Continuous Integration, Build Automation, and Configuration Management, contribute to DevOps practices. These tools allow developers to release a project's code at any time, making building, testing, and improving apps a continuous process. Source code management systems provide many of the same benefits as CD tools, helping uncover errors and security risks in original versions of code. This leads to a more efficient process when developing and managing an app or service. In order to ensure this type of efficiency, team collaboration tools can be implemented to provide an open link of communication between all departments utilizing a DevOps strategy.
Show More
Show Less
GitHub

GitHub

(2,354)4.7 out of 5

GitHub

(2,354)4.7 out of 5

GitHub is the best place to share code with friends, co-workers, classmates, and complete strangers. Over two million people use GitHub to build amazing things together.

Top DevOps Software Result from Version Control Hosting

Also listed in DevOps Platforms, Software Composition Analysis, Cloud Infrastructure Automation, Static Application Security Testing (SAST), Application Release Orchestration


Muzammil M.
MM
“Github Makes Version Control and Collaboration Simple and Efficient”
What do you like best about GitHub?

GitHub is very useful for managing and sharing projects in an organized way. I’ve used it many times to store code, track updates, and collaborate with others more efficiently. The version control system makes it easy to manage changes and restore older versions when needed, which saves a lot of time during projects. I also found the platform simple to use, with a clean interface that works well for both beginners and experienced users. Collaboration features, repositories, and project tracking tools make development work smoother and more manageable. Review collected by and hosted on G2.com.

What do you dislike about GitHub?

One thing I dislike about Github is that some advanced features can feel confusing for new users, especially when working with branches, merge conflicts, or command-line Git operations. It sometimes takes time to fully understand the workflow if someone is not from a technical background. I also noticed that managing very large repositories or multiple projects at once can become a bit complicated without proper organization. Another area that could be improved is notifications and project tracking, because important updates can occasionally get buried when working on active repositories with many contributors. The platform is very powerful, but beginners may need some learning time before using all features comfortably. Simpler onboarding and a more beginner friendly explanation of advanced tools would make the experience even better. Review collected by and hosted on G2.com.

What problems is GitHub solving and how is that benefiting you?

Github solves many common problems related to code management, project collaboration, and version control. Before using GitHub, managing different versions of files and coordinating work with multiple people was more difficult and confusing. With Github, everything stays organized in one place, making it easier to track changes, manage updates, and collaborate without losing important work. One of the biggest benefits for me is that it saves time during development projects. The version history helps recover older files or changes whenever needed, which reduces mistakes and makes project management more reliable. I also find collaboration much smoother because team members can work on the same project, review code, and share feedback easily without creating confusion. Another useful benefit is remote access and backup. Since projects are stored online, I can access them from different devices and continue work from anywhere. Github also helps improve productivity by keeping repositories, documentation, and updates structured in a professional way. It works well for both small personal projects and larger team based development work, which makes it a very practical platform for daily use. Review collected by and hosted on G2.com.

Show More
Show Less
LaunchDarkly

LaunchDarkly

(736)4.5 out of 5

LaunchDarkly

(736)4.5 out of 5

LaunchDarkly's vision is to eliminate risk for developers and operations teams from the software development cycle. As companies transition to a world built on software, there

Top DevOps Software Result from Feature Management

Also listed in Prompt Management Tools, Large Language Model Operationalization (LLMOps), Observability Software, Log Monitoring, Product Analytics


Parth M.
PM
“Operational agility at scale — deploys replaced by toggles”
What do you like best about LaunchDarkly?

UI / UX

Intuitive flag management: toggling, targeting rules by account/region, and scheduled rollouts work out of the box

Strong visibility — see active flags, their targets, and last-modified status at a glance

At 100+ flags across services, the UI gets noisy; we rely on naming conventions (rollout-*, enable-*, configure-*) and project organization to stay navigable

Filtering and search are functional but underpowered for teams at our scale

Integrations

Clean integration with our Java backend via the Server SDK

Built a centralized wrapper service that all modules consume — no service talks to LD directly

DynamoDB persistent store ensures flags survive SDK restarts without re-fetching from LD cloud (critical for production reliability)

CI workflow auto-syncs code references on every push, keeping the LD dashboard aware of where each flag is actually used

Local development runs against a containerized LD dev server or plain YAML files — no live LD connection required

Performance

Core to how we operate our large-scale monorepo for real-time event ingestion and multi-channel engagement

128+ feature flags embedded across 229 files in the core pipeline

Shifted our workflow from "change code and deploy" to "toggle and observe"

For a platform processing millions of events in real time, this directly reduces incident blast radius and dropped events

Pricing / ROI

Each skipped config-change deploy saves 30–60 minutes of engineer time

~25 flag changes/month = 12–25 engineering hours saved on deploys alone

Runtime tuning (thread pools, processing limits, retry intervals) dropped from 2–4 hours per iteration to ~5 minutes

Incident math is the clincher: one kill-switch save of 30 minutes downtime on the real-time pipeline justifies the annual cost

Pricing scales with seats and flag evaluations — expensive at enterprise scale, but cheaper than the alternative (more deploys, longer incidents, slower rollouts)

Support / Onboarding

Low-friction onboarding thanks to our wrapper layer — engineers learn our internal API, not the LD SDK

Official LD documentation and SDK docs are solid

File-based mode for tests and a local dev server let new developers work with flags from day one without LD credentials

Upfront investment went into defining our targeting context model (infrastructure, account, custom attributes) — self-sustaining once established

AI / Intelligence

LLM Gateway uses a JSON flag to dynamically route accounts across AI model providers, with built-in regional compliance validation

A background worker polls a flag every minute to add/remove accounts from historic processing workflows

Flags control file-size limits per content type in our AI tooling layer

Net effect: a control plane for inherently experimental AI features — model swaps, threshold tuning, per-account gating — without code deploys Review collected by and hosted on G2.com.

What do you dislike about LaunchDarkly?

UI / UX

While lifecycle stages and archival suggestions exist, once you get to 100+ flags the dashboard still lacks service- or team-based grouping. Naming conventions end up being the main organizational tool. Native folders or tag-based grouping by service would lower cognitive overhead.

The targeting rule builder becomes unwieldy with complex, multi-context rules (infrastructure + account + custom attributes). Managing nested conditions is cumbersome for power users.

Flag search and filtering are fine at small-to-mid scale, but at enterprise flag volumes, bulk operations and cross-project visibility feel limited.

Integrations

The DynamoDB persistent store has a hard 400KB per-item limit. Flags that exceed this are silently skipped with only an ERROR log, with no proactive alerting or dashboard visibility.

On cold start with a persistent store, the SDK serves last-known (potentially stale) flag data and is technically “not initialized” until streaming reconnects. For kill switches or processing limits, that stale-default window is operationally risky.

Local-to-production flag parity is still a manual discipline. File-based local configs can drift from production state and create environment mismatches.

Performance

Streaming connections can drop in containerized environments behind load balancers due to network timeouts. The SDK does auto-reconnect and exposes status listeners (DataSourceStatusProvider), but the reconnection window still creates brief stale-flag exposure under load.

For high-throughput services evaluating flags on every request, evaluation overhead compounds. The SDK doesn’t provide built-in per-flag evaluation latency metrics, so teams have to instrument this themselves.

Cold-start hydration from DynamoDB is slower than in-memory. During this window, flags fall back to coded defaults, which can cause unexpected behavior for critical operational flags.

Pricing / ROI

~~Seat-based pricing doesn't differentiate roles~~ — corrected: LD now offers unlimited seats on Developer and Foundation tiers. However, usage-based pricing (service connections, MAUs) can be hard to predict for high-throughput platforms. Better cost-forecasting tools within LD would help.

Enterprise and Guardian tier pricing is fully custom with no published benchmarks, which makes it difficult to budget or compare without a sales conversation.

Evaluation volume costs are opaque at scale. There’s no self-serve way to model, “If we add X more flags across Y services, what’s the cost impact?”

Support / Onboarding

Documentation covers the basics well, but advanced patterns (multi-context targeting design, persistent store tuning, high-throughput optimization) are scattered across blog posts, support articles, and GitHub issues instead of being consolidated in one place.

For production incidents involving SDK streaming behavior or cache inconsistencies, troubleshooting requires correlating SDK status listeners, DynamoDB state, and network logs. A unified diagnostics view would speed resolution.

There are no published reference architectures for high-throughput event platforms. Teams designing targeting context models at scale are largely self-guided.

AI / Intelligence

LD launched AI Experiments, AI Versioning, and AI Configs (GA May 2025) — a significant step forward. However, compliance-aware model routing (ensuring data doesn’t flow to disallowed regions) is still custom logic that teams must build themselves.

Feedback-loop-driven flag decisions (tying flag choices to downstream quality metrics automatically) aren’t natively supported. Experimentation still requires manual metric setup rather than closed-loop optimization.

For teams already managing AI features via plain JSON flags (model overrides, prompt configs), the migration path to the new AI Configs feature isn’t well documented. Review collected by and hosted on G2.com.

What problems is LaunchDarkly solving and how is that benefiting you?

Before LaunchDarkly, every configuration change or feature toggle required a full deploy cycle—30–60 minutes minimum in a large monorepo. Incident response meant writing a fix, getting it reviewed, building, and deploying, which easily took 1–4 hours while the issue continued impacting users. Rollouts were all-or-nothing, and per-customer feature management often meant hardcoded account lists living in the code.

Since adopting LaunchDarkly, incident response has gone from hours to seconds. Kill-switch flags let us disable a broken feature immediately instead of waiting for a full deploy. For a real-time event pipeline, that difference can prevent significant data loss during outages.

We can also tune configuration without deploys. Thread pools, processing limits, and retry intervals are now managed via flags. A tuning cycle that used to take 2–4 hours per iteration (change → deploy → observe) now takes about 5 minutes.

Progressive rollouts have replaced the old all-or-nothing approach. We can ship to 1% of accounts first, and if a bug is caught at 5% rollout, it affects 20x fewer users—dramatically reducing support escalations.

Per-customer targeting no longer requires code changes. Enabling features for specific accounts used to mean a PR plus a deploy; now it’s just a flag rule change, saving dozens of engineering hours across 30+ account-targeted flags.

Finally, teams can ship more independently. Code can merge behind disabled flags, and PMs can toggle features when they’re ready. That has eliminated long-lived branches, reduced merge conflicts, and removed a lot of release-day coordination across teams. Review collected by and hosted on G2.com.

Show More
Show Less
Gearset DevOps

Gearset DevOps

(292)4.7 out of 5

Gearset DevOps

(292)4.7 out of 5

Gearset is the most trusted DevOps platform with a full suite of powerful solutions for every team developing on Salesforce. Deploy: Achieve fast, reliable metadata and data d

Top DevOps Software Result from DevOps Platforms

Also listed in Disaster Recovery, SaaS Backup, Static Code Analysis, Continuous Delivery, Continuous Integration


JJ
“Straightforward Deployments, Powerful Metadata Tools, and Outstanding Support”
What do you like best about Gearset DevOps?

The core deployment process is straightforward and comes with a variety of admin-focused features that many other Salesforce DevOps companies simply don’t provide. It also offers a broad set of useful tools for managing the metadata lifecycle end to end. On top of that, the customer support team is a real strength: they’re professional, responsive, and genuinely helpful when you’re navigating the platform’s features. Review collected by and hosted on G2.com.

What do you dislike about Gearset DevOps?

There are several significant drawbacks for our specific workflow. To start, having to work in a separate application outside of Salesforce adds an extra step and breaks up our process. We also found that the CI/CD functionality didn’t fit our needs, even after a long POC; overall, it felt buggy and lacked a native back-promotion option. In addition, the deployment process doesn’t support auto-merging: it stops at every conflict during the comparison, which forces us to manually resolve conflicts and make selections each time. Finally, the lack of an external API is a major limitation because it prevents us from integrating Gearset with our custom pipelines or other external tools. Review collected by and hosted on G2.com.

What problems is Gearset DevOps solving and how is that benefiting you?

It offers an easy-to-use interface that meets our basic deployment needs, especially for administrative tasks. It also makes moving metadata between environments much simpler than doing it manually. That said, it currently feels less aligned with the specific needs of our development team, particularly when it comes to automated CI/CD workflows and the level of flexibility we need for integrations. Review collected by and hosted on G2.com.

Show More
Show Less
GitLab

GitLab

(893)4.5 out of 5

GitLab

(893)4.5 out of 5

An open source web interface and source control platform based on Git.

Top DevOps Software Result from Version Control Hosting

Also listed in Secure Code Review, DevOps Platforms, Value Stream Management, Software Composition Analysis, Cloud Infrastructure Automation


MS
“GitLab’s All-in-One DevOps Platform with CI/CD and Security Scanning”
What do you like best about GitLab?

The best thing I like about GitLab is that it provides an all-in-one DevOps platform where I can manage code, CI/CD pipelines, issue changes, code reviews, and security scanning. GitLab also helps me push code from my local environment to staging and production. It supports different stages, such as build, our company environment stage, and production, and it improves security by scanning the code. Review collected by and hosted on G2.com.

What do you dislike about GitLab?

I don’t have any major dislikes about GitLab; it’s a good product overall. Review collected by and hosted on G2.com.

What problems is GitLab solving and how is that benefiting you?

GitLab solves problems related to software development collaboration, code management, CI/CD automation, and deploying code to different stages more easily. For me, it addresses the difficulty of managing code across different teams and keeping everyone aligned. Overall, GitLab helps solve the major challenge of organizing development work in one place and making the process smoother from code changes through deployment, which benefits me by reducing confusion and improving coordination. Review collected by and hosted on G2.com.

Show More
Show Less

Bring back the joy of app development! Mobile Continuous Integration & Delivery for your whole team, with dozens of integrations for your favorite services.

Top DevOps Software Result from Continuous Delivery

Also listed in Continuous Integration, Build Automation, DevOps Platforms


Johan d.
JD
“Streamlined App Publishing for Indie Devs”
What do you like best about Bitrise Mobile DevOps Platform?

I like that Bitrise Mobile DevOps Platform is very easy to use, with more than enough documentation to help me get going. The Bitrise CI features are great for actually running my apps and building them on the platform, then publishing them to the stores. Also, the initial setup was super easy for my use case, as most templates were built in, requiring only small changes. I appreciate how everything became automated after selecting my GitHub repo. Review collected by and hosted on G2.com.

What do you dislike about Bitrise Mobile DevOps Platform?

There is nothing I "dislike" about the platform. It does everything I need really well. Review collected by and hosted on G2.com.

What problems is Bitrise Mobile DevOps Platform solving and how is that benefiting you?

The biggest problem Bitrise Mobile DevOps Platform solves for me is simplifying app publishing, saving time in the process, especially since I wear many hats as an indie developer. It also helps in running tests to ensure app quality. Review collected by and hosted on G2.com.

Show More
Show Less
Redgate Flyway

Redgate Flyway

(95)4.5 out of 5

Redgate Flyway

(95)4.5 out of 5

Flyway extends DevOps to your databases to accelerate software delivery and ensure quality code. It increases the reliability of deployments by versioning your database.

Top DevOps Software Result from Database DevOps Software

Also listed in Continuous Delivery, Version Control Software


Gautham D.
GD
Original Information
“Redgate Flyway: Schema-as-Code Migrations That Fit Seamlessly Into CI/CD”
What do you like best about Redgate Flyway?

Redgate Flyway is a leading database migration tool that uses a “schema-as-code” approach to help manage database changes efficiently. It integrates smoothly with CI/CD pipelines to automate deployments from development through to production. Flyway also supports over 50 database management systems, helping ensure consistent and reliable database schema evolution across a wide range of environments. Review collected by and hosted on G2.com.

What do you dislike about Redgate Flyway?

What I dislike about Redgate Flyway generally comes down to a few key areas that can slow development workflows and add unnecessary overhead.

First, the learning curve can feel quite steep, especially for teams that are new to migration-based database management. The documentation sometimes seems insufficient, which makes it harder to understand migrations and manage them effectively. As a result, developers can get frustrated and the ramp-up period can take longer than it should.

Another major drawback is the lack of certain features, particularly when important capabilities are limited to paid editions. This “paywall fatigue” comes from seeing functions that feel like they should be standard—such as undo migrations, dry runs, or more advanced reporting—locked behind higher-priced tiers. That can be difficult to justify, especially for smaller teams or projects working with tight budgets. Review collected by and hosted on G2.com.

What problems is Redgate Flyway solving and how is that benefiting you?

In the fast-paced world of software development, managing database changes can often feel like navigating a minefield. Inconsistent environments, manual errors, and the dreaded "it works on my machine" syndrome are common headaches that can derail projects and lead to costly downtime. This is precisely where Redgate Flyway steps in, offering a robust solution to these pervasive problems and bringing significant benefits to our development and operations alike.

One of the primary problems Redgate Flyway tackles is the lack of a standardized, version-controlled approach to database changes. Traditionally, database updates often involved a series of ad-hoc scripts and manual interventions, making it incredibly difficult to track what changes were applied, when, and by whom. Flyway resolves this by treating database migrations as code, allowing us to define, version, and apply these changes systematically across all our environments. This means our database schema is always in sync with our application code, eliminating inconsistencies between development, testing, and production environments. The benefit here is clear: improved quality and reliability, as we can apply the same rigorous standards of version control, testing, and code review that we use for our application code to our database.

Another critical issue Flyway addresses is the potential for manual errors and the resulting unreliability of deployments. When database changes are handled manually, human error is almost inevitable, leading to broken deployments, data corruption, or unexpected behavior. Flyway automates this process, ensuring that changes are applied in the correct order and consistently. This automation not only reduces the risk of errors but also significantly speeds up the deployment process. For us, this translates into greater peace of mind, knowing that what we've tested in a staging environment will reliably be what goes into production. It minimizes the risk and impact of database failures by ensuring our migrations are tested, verified, and even reversible. Review collected by and hosted on G2.com.

Show More
Show Less
Appcircle

Appcircle

(45)4.9 out of 5

Appcircle

(45)4.9 out of 5

An enterprise-grade mobile DevOps platform that automates the build, test, and publish store of mobile apps for faster, efficient release cycle

Top DevOps Software Result from Continuous Integration

Also listed in Continuous Delivery, Build Automation, DevOps Platforms, Enterprise App Store


IC
“Appcircle Makes Mobile Release Management Easier”
What do you like best about Appcircle?

Appcircle makes the entire mobile release process seamless, from build to store submission, in a single platform. The publish module connecting to both Google Play and App Store Connect is straightforward, and once set up, submitting a release takes just a few clicks without ever logging into the developer portals manually. The store status visibility after submission is a great touch that saves a lot of back-and-forth checking.

The UI is clean and the learning curve is manageable even for teams that are new to CI/CD. Overall it feels like a tool built by people who actually understand mobile release workflows. Review collected by and hosted on G2.com.

What do you dislike about Appcircle?

Except some small issues, there's not much to complain about. Review collected by and hosted on G2.com.

What problems is Appcircle solving and how is that benefiting you?

We used to handle store submissions manually, which was time consuming and error prone. Appcircle automated that entire flow; build, sign, and publish and cutting down our release cycle significantly. The Re-sign Binary feature has also been a huge time saver, allowing us to redistribute the same build with different signing identities without rebuilding from scratch. The publish module in particular removed the need for anyone on the team to have direct access to developer portal credentials, which also improved our security posture. Review collected by and hosted on G2.com.

Show More
Show Less
Vercel

Vercel

(68)4.7 out of 5

Vercel

(68)4.7 out of 5

Vercel provides cloud deployment solutions to individuals, teams and organizations.

Top DevOps Software Result from Continuous Delivery

Also listed in WebOps Platforms, Content Delivery Network (CDN), Cloud Platform as a Service (PaaS)


Himanshu J.
HJ
“Vercel makes shipping modern web apps ridiculously smooth”
What do you like best about Vercel?

What I like most about Vercel is how simple it makes the entire deployment workflow. You push code, get a live deployment quickly, and can validate changes in preview environments without a lot of extra setup. It feels especially polished for frontend-heavy projects and for teams that want to move fast.

I also appreciate that performance and visibility are built into the platform. Having analytics, speed insights, logs, and deployment details all in one place makes it much easier to spot issues early and keep improving the product without having to juggle a bunch of separate tools. Review collected by and hosted on G2.com.

What do you dislike about Vercel?

What I don’t like is that as a project grows, pricing and usage can start to feel a bit less predictable. Also, if you need very custom control over your infrastructure, Vercel can feel more opinionated than a fully self managed setup. Review collected by and hosted on G2.com.

What problems is Vercel solving and how is that benefiting you?

Vercel addresses slow deployment workflows, complex infrastructure setup, and limited visibility into frontend performance. It gives me a quicker, simpler way to deploy projects, share preview links for testing, and monitor performance and reliability without having to stitch together multiple tools. The biggest benefit for me is being able to move faster with less operational overhead, which is especially helpful when I’m building and iterating quickly. Review collected by and hosted on G2.com.

Show More
Show Less
Copado DevOps

Copado DevOps

(329)4.4 out of 5

Copado DevOps

(329)4.4 out of 5

Copado DevOps weaves security best practices into agile planning, CI/CD and testing to help you safely accelerate software delivery.

Top DevOps Software Result from DevOps Platforms

Also listed in Continuous Integration, Continuous Delivery


Rehan A.
RA
Original Information
“Copado DevOps Streamlines Salesforce Release Management with Powerful Automation”
What do you like best about Copado DevOps?

What I like most about Copado DevOps is how much it simplifies Salesforce release management and the overall deployment process. It gives me a clear, structured way to handle user stories, version control, testing, and deployments all within a single platform. The automation features cut down on manual effort, and the visibility across the development pipeline makes collaboration between teams noticeably smoother. I also appreciate that it supports continuous integration and helps improve deployment tracking from start to finish. Review collected by and hosted on G2.com.

What do you dislike about Copado DevOps?

One thing I dislike about Copado DevOps is that the initial setup and learning curve can feel complex for new users, especially for teams that aren’t familiar with DevOps practices. Some configurations and more advanced features may also require additional training before you can use them effectively. Aside from that, the platform works well for managing Salesforce deployments and helps keep the deployment process organized. Review collected by and hosted on G2.com.

What problems is Copado DevOps solving and how is that benefiting you?

Copado DevOps helps address the challenge of managing Salesforce deployments, version control, and release coordination across multiple environments. It reduces deployment errors, strengthens collaboration among development teams, and automates repetitive release tasks. For me, this means saving time, improving deployment reliability, and keeping the overall Salesforce development lifecycle more organized and efficient. Review collected by and hosted on G2.com.

Show More
Show Less
DeployHQ

DeployHQ

(63)4.5 out of 5

DeployHQ

(63)4.5 out of 5

Deploy your websites or apps directly from your repository to servers or the cloud.

Top DevOps Software Result from Continuous Delivery


ZG
“Amazing Automation with Stellar Support”
What do you like best about DeployHQ?

I really like DeployHQ's web app, it's really great. Their support has been amazing, and they even made some API changes I requested within just a couple of days. DeployHQ has been amazing for our use case. Review collected by and hosted on G2.com.

What do you dislike about DeployHQ?

The fact that you can't deploy individual servers when they're part of a group is a little bit annoying. But it can be circumvented through their API. It would be great to have a UI button to deploy to those servers. Review collected by and hosted on G2.com.

What problems is DeployHQ solving and how is that benefiting you?

DeployHQ fills feature gaps that many managed hosts lack and allows automation of significant portions of deployments and workflows with its API. Review collected by and hosted on G2.com.

Show More
Show Less
Copado Essentials

Copado Essentials

(50)4.6 out of 5

Copado Essentials

(50)4.6 out of 5

Our engineers spent years mastering their craft, bringing together decades of expertise in creating products that continue to exceed our customers'​ expectations. When you cho

Top DevOps Software Result from Continuous Delivery

Also listed in Continuous Integration


Muhammad O.
MO
Original Information
“I use Copado Essentials for Simple Salesforce Deployments and Version Tracking”
What do you like best about Copado Essentials?

I started using Copado Essentials recently to handle small Salesforce changes and deployments. What I found useful is how simple it keeps version tracking without making things too complex. Earlier, managing changes manually was confusing, especially when working across different environments, but Copado made it more structured. In my work, I move changes from one environment to another and keep track of different versions along the way. Overall, I also like how well it integrates with Salesforce, which makes my workflow smoother and more organized. Review collected by and hosted on G2.com.

What do you dislike about Copado Essentials?

At times it feels a bit limited when I’m working on slightly more complex Salesforce tasks. For basic deployments it works fine, but when I tried to manage more detailed changes, I still had to rely on other tools alongside it. It also took me a while at the beginning to understand the overall flow, so a little more guidance or clearer direction would really help new users get started. That said, for simple use cases, it still does the job well. Apart from that, it works well for simple and structured deployments. Review collected by and hosted on G2.com.

What problems is Copado Essentials solving and how is that benefiting you?

In my work, managing deployments and tracking changes in Salesforce manually can be time-consuming and error prone. Copado Essestials helps solve this by providing a structured way to manage deployments and keep track of changes across environments. This reduces my manual efforts, saves my time, and helping me to avoid mistakes. In my current work, I use it mainly for handling smaller deployments and tracking changes step by step. Although, it improves my productivity and making my workflow more efficient, organized, and reliable. Review collected by and hosted on G2.com.

Show More
Show Less
Jenkins

Jenkins

(564)4.4 out of 5

Jenkins

(564)4.4 out of 5

Jenkins is an application that monitors executions of repeated jobs, such as building a software project or jobs run by cron.

Top DevOps Software Result from Continuous Integration

Also listed in DevOps Platforms, Continuous Delivery, Build Automation, AWS Marketplace


Anish M.
AM
“Easy Integrations, Solid Docs, and Highly Customizable Jenkins Pipelines”
What do you like best about Jenkins?

It is able to integrate easily with tools like Bitbucket, Kubernetes, Docker, SonarQube and similar tools.

It has pretty good documentation making life easier to connect and work in production environment and Dev environment.

Jenkins can automate builds, testing, deployments, rollback workflows, notifications, and infrastructure tasks reliably across multiple environments.

Also we are able to tailor pipelines as per our needs effectively. Review collected by and hosted on G2.com.

What do you dislike about Jenkins?

When we have hundreds of pipelines running across dynamic agents, Kubernetes workers, or hybrid infra, diagnosing intermittent failures becomes painful.

Problems are often non-deterministic, agent drift, workspace contamination, plugin thread deadlocks, credential injection timing, or executor starvation.

With teams building the pipelines based on the knowledge they have. Some are tightly coupled and needs the respective owners to find issues. Review collected by and hosted on G2.com.

What problems is Jenkins solving and how is that benefiting you?

With Jenkins solving the CI/CD workflow, having code stored in a repo and you manually validate the tests and then copy the code and paste into the server is a lot of burden with Jenkins one time setup and the process of shipping code with tests get very optimal.

It acts as the automation backbone connecting source control system. Review collected by and hosted on G2.com.

Show More
Show Less
Prodly DevOps

Prodly DevOps

(181)4.7 out of 5

Prodly DevOps

(181)4.7 out of 5

Prodly DevOps automates low-code application development empowering non-developers to configure, test and deploy Salesforce low code applications. Customers have found increas

Top DevOps Software Result from DevOps Platforms

Also listed in Cloud Migration, Continuous Delivery, Continuous Integration, Salesforce AppExchange Apps


Nikhil R.
NR
“Automated Salesforce Deployments with Ease”
What do you like best about Prodly DevOps?

I use Prodly DevOps because it makes Salesforce change management and deployments much faster and less error-prone. Instead of spending hours manually migrating configuration data or worrying about breaking something in production, Prodly automates the process and ensures accuracy. It helps me maintain compliance, improve release speed, and reduce risk during deployments. Overall, it saves time and gives me confidence that changes will go smoothly. The initial setup was straightforward and well-documented, making it easy to get started quickly. It's reliable, saves time, and makes deployments much easier. Review collected by and hosted on G2.com.

What do you dislike about Prodly DevOps?

The UI could be more intuitive, and sometimes large data sets take longer to process than expected. Review collected by and hosted on G2.com.

What problems is Prodly DevOps solving and how is that benefiting you?

I use Prodly DevOps to make Salesforce change management and deployments faster and less error-prone. It automates configuration migration, ensures accuracy, maintains compliance, improves release speed, and reduces deployment risk. It saves time and gives me confidence in smooth changes. Review collected by and hosted on G2.com.

Show More
Show Less
Flosum

Flosum

(214)4.8 out of 5

Flosum

(214)4.8 out of 5

Release Management software for Salesforce

Top DevOps Software Result from DevOps Platforms

Also listed in SaaS Backup, Continuous Delivery, Continuous Integration


Matheus P.
MP
“Complete Tool for DevOps and Backup in Salesforce”
What do you like best about Flosum?

I appreciate Flosum for its incredibly comprehensive DevOps solution which, unlike Salesforce's DevOps Center, offers functionalities such as rollback, code versioning, and code quality analysis, which we greatly missed before. The ability to view the change history is especially useful for development control and security. Additionally, the integrated backup solution is a valuable feature, providing an additional layer of security for our data in Salesforce. The initial transition was very smooth, evidenced by the quick integration of our teams, which reinforces the platform's efficiency and usability. This comprehensive set of features was decisive in our migration from other solutions, and I did not hesitate to recommend it to other colleagues, given the positive impact it has had on our operations. Review collected by and hosted on G2.com.

What do you dislike about Flosum?

I believe that the DevOps solution should have greater segmentation of access and security, with the possibility of segmenting access to pipelines or other resources within the branch. In the backup solution, it would be interesting to have the possibility to transfer data between orgs, such as removing data from org A and transferring it to B. Review collected by and hosted on G2.com.

What problems is Flosum solving and how is that benefiting you?

I use Flosum as a DevOps and backup solution for Salesforce, solving issues like rollback, code versioning, and quality analysis, which were absent in Salesforce's DevOps Center. Review collected by and hosted on G2.com.

Show More
Show Less

Deployment Automation (formerly Serena Deployment Automation) supports continuous delivery and production deployments by automating the deployment pipeline, reducing cycle tim

Top DevOps Software Result from Continuous Delivery

Also listed in Application Release Orchestration


Sudhir K.
SK
Original Information
“I am using microfocus deployment in our project. It is very smooth experience”
What do you like best about OpenText Deployment Automation 25.2?

User friendly and easy to use. It helped a lot in automation. Review collected by and hosted on G2.com.

What do you dislike about OpenText Deployment Automation 25.2?

There is no such feature which I disliked. Review collected by and hosted on G2.com.

What problems is OpenText Deployment Automation 25.2 solving and how is that benefiting you?

Earlier from other products , deployment was not smooth. It is easy to track. Review collected by and hosted on G2.com.

Show More
Show Less
Semaphore

Semaphore

(194)4.7 out of 5

Semaphore

(194)4.7 out of 5

Semaphore is a hosted continuous integration and deployment service for open source and private projects.

Top DevOps Software Result from Continuous Integration

Also listed in DevOps Platforms, Automation Testing, Continuous Delivery


Den Z.
DZ
“Fast, Reliable CI with Powerful Yet Readable Config—Built for Engineers”
What do you like best about Semaphore?

Semaphore is fast, reliable, and easy to work with. Its CI configuration is powerful while still staying readable and straightforward. Overall, it feels like a tool built for engineers, supported by people who genuinely care about helping teams succeed. Review collected by and hosted on G2.com.

What do you dislike about Semaphore?

Some advanced configuration options aren’t immediately available or obvious out of the box, especially for more complex CI workflows. However, the documentation and support team are very responsive, and in our experience they’ve been open to feedback and willing to help find good solutions when these edge cases come up. Review collected by and hosted on G2.com.

What problems is Semaphore solving and how is that benefiting you?

Semaphore helps us efficiently manage CI resources and optimize pipeline execution based on the nature of the changes being made. This reduces CI costs, shortens queue times, and improves the overall developer experience by giving our team more control over how and when resources are used. Review collected by and hosted on G2.com.

Show More
Show Less
Opsera

Opsera

(107)4.6 out of 5

Opsera

(107)4.6 out of 5

Continuous Orchestration of DevOps Tools, Pipelines, and Insights. Opsera is a "whitebox" orchestration platform for next gen DevOps teams, that maximizes choice of stack and

Top DevOps Software Result from DevOps Platforms

Also listed in Value Stream Management, Continuous Delivery, Configuration Management, Continuous Integration, Build Automation


Hemanth N.
HN
“Opsera: Plain-English Security Scans with a Privacy-First MCP Architecture”
What do you like best about Opsera?

Opsera feels like having a senior security engineer sitting beside you who never sleeps, never judges, and speaks plain English. Instead of juggling five different security tools like a circus performer, you just type "scan this repo for vulnerabilities" and watch the magic happen. The MCP architecture is the real genius here, your code never leaves your machine, like having a doctor who makes house calls instead of demanding you bring your entire medical history to a crowded waiting room. The documentation reads like a well-organized cookbook: here's what you're making, here's why it's delicious, here's exactly how to make it. No mystery ingredients, no vague "season to taste" nonsense, you get exact commands like npm install package@version that actually fix problems. Review collected by and hosted on G2.com.

What do you dislike about Opsera?

Some documentation links lead to dead ends or generic URLs, which breaks the otherwise smooth journey, imagine following a treasure map only to find one of the X marks leads to a blank wall. The claim of "150+ integrations" is tantalizing but unverified; I'd love to see the guest list before committing to this party. The Help Center and Resources sections feel like scaffolding around a building still under construction, promising structure, but you can't move in quite yet. Review collected by and hosted on G2.com.

What problems is Opsera solving and how is that benefiting you?

Security tooling has traditionally felt like assembling an orchestra where every musician speaks a different language, plays from different sheet music, and bills you separately. Opsera hands you a single conductor's baton. It collapses the chaos of Gitleaks, Semgrep, Trivy, and compliance frameworks into one conversational interface that lives inside the IDE you already use. No more context-switching between fifteen browser tabs like a frantic air traffic controller. The shift-left approach means catching vulnerabilities while they're still typos, not after they've become production fires. The 12-20 hours saved weekly isn't marketing fluff, it's the difference between spending your Friday firefighting and actually going home on time. Review collected by and hosted on G2.com.

Show More
Show Less
amazee.io

amazee.io

(40)4.9 out of 5

amazee.io

(40)4.9 out of 5

amazee.io is a global Managed Service Provider delivering secure, enterprise-grade container hosting, leveraging the open source build and deploy platform Lagoon

Top DevOps Software Result from WebOps Platforms

Also listed in Continuous Delivery, Build Automation, Cloud Platform as a Service (PaaS), Managed Hosting


Michael B.
MB
“How to scale your drupal platform!”
What do you like best about amazee.io?

- fits my usecase 100%

- Open source, you can self host everything, if you can handle the workload

- Support is incredible

- Api

- Docs Review collected by and hosted on G2.com.

What do you dislike about amazee.io?

- no german hoster available, only big american hosters Review collected by and hosted on G2.com.

What problems is amazee.io solving and how is that benefiting you?

Hosting our "mono repo drupal application" as a "poly site project".

Every tenant has their own:

- database

- filesystem

- feature flags activated

All from one code base.

Deployments can be triggerd manually or automatic, easy to handle.

Setup of new client infrastructure can be automated. And is up in minutes to run the same code in a new project.

I can focus on developing the application and dont have to be afraid of handling the infrastructure for it.

We self hosted lagoon for 1/2 year and switched the to fully managed service by amazee. Best decision ever for my work live balance as CTO. Review collected by and hosted on G2.com.

Show More
Show Less
Rev-Trac

Rev-Trac

(59)4.6 out of 5

Rev-Trac

(59)4.6 out of 5

Rev-Trac is engineered to modernize how SAP change is managed across complex SAP landscapes and can support SAP ECC, S/4HANA, BTP and other Cloud applications, accelerating de

Top DevOps Software Result from DevOps Platforms

Also listed in Application Release Orchestration, Continuous Delivery, Continuous Integration, SAP Store


CS
Original Information
“Review of RevTrac”
What do you like best about Rev-Trac?

RevTrac enforces change management process. It automated approvals and packaging dependencies which was not possible in earlier STMS process. It has role-based control and release team can decide which changes can be allowed in which environment. It enhances visibility and audit trail of changes. Parallel development and OOps conflicts/overwrite and overtakes can be caught earlier in the cycle.

Customer support is really good. The team jumps on to the request quickly and works with the technical team.

Easy to use for someone like a release manager. Review collected by and hosted on G2.com.

What do you dislike about Rev-Trac?

Making changes is complex and requires constant vendor engagement.

Someone new needs time to understand RevTrac.

DevOps process using revtrac is not simple still. Integration with automation tools is not easy.

No easy way to identify deployment errors before the deployment is done.

Reporting is non existent on DORA metrics. Review collected by and hosted on G2.com.

What problems is Rev-Trac solving and how is that benefiting you?

Helps in automated transport depoyment and easy tracking of changes. Workflows and approvals are customized and helps maintain quality while deploying changes from one system to other. RevTrac helps in have a centralized control of all changes. Review collected by and hosted on G2.com.

Show More
Show Less

Free and open source, Ionic offers a library of mobile-optimized HTML, CSS and JS components, gestures, and tools for building highly interactive apps. Built with Sass and opt

Top DevOps Software Result from Mobile Development Frameworks

Also listed in Component Libraries, Low-Code Mobile App Builder, Drag and Drop App Builder, Continuous Integration, Continuous Delivery


LF
“Seamless Developer Experience”
What do you like best about Ionic: An OutSystems Company?

Probably the components. They are very straightforward to use thanks to their amazing documentation. Great support, community, and documentation go a long way for developers. Review collected by and hosted on G2.com.

What do you dislike about Ionic: An OutSystems Company?

There are not many downsides but working with the shadow-DOM to customize components would probably be one. If you can avoid having too many customizations then this is the perfect product. Review collected by and hosted on G2.com.

What problems is Ionic: An OutSystems Company solving and how is that benefiting you?

Easy out-of-the-box components is making it fast to develop and launch our app. Also being able to work on one code base and deploy to both iOS and Android apps is a huge benefit for us. Review collected by and hosted on G2.com.

Show More
Show Less