Roll back deployments using a simple API call or a few clicks—no extra scripts or setup.
Imagine this scenario: You've just confidently pushed the latest update to production. The dashboard lights up green, and everything seems perfect—until it isn't. Suddenly, alerts flood your inbox, and you're scrambling. Your deployment isn’t performing as expected, and the pressure is on to roll it back quickly and confidently.
But rollbacks often aren’t as simple as pressing a button. Traditionally, deployment rollbacks require manual intervention, custom scripts, or careful pre-planning of rollback stages. This complexity slows you down precisely when speed matters most, leaving users frustrated.
In many CI/CD platforms, rollbacks can feel clunky and over-engineered. You might find yourself relying on custom scripts, manually configured steps, or entirely separate workflows built just for rollback scenarios. In some cases, rollbacks require predefined pipeline stages, adding more complexity and setup overhead, especially when all you want is a quick return to a stable state.
These approaches often mean extra setup, scripting complexity, or manual intervention—exactly what you don’t want when your service is down and every second counts.
Now imagine a different experience—rolling back your deployment with a single, straightforward API call. No log diving, no dashboard scanning, no chasing down deployment details. Just a clean, simple path back to stability.
That’s precisely what the latest Harness API offers. Instead of complex identifiers, you just provide a few simple parameters
This straightforward approach transforms rollback from a nightmare into a breeze.
With this new API, all it takes is one simple call, passing just a few familiar identifiers:
curl --location 'https://app.harness.io/ng/api/rollback/trigger/v2?accountIdentifier=string&orgIdentifier=string&projectIdentifier=string' \
--header 'Content-Type: application/json' \
--header 'x-api-key: YOUR_API_KEY_HERE' \
--data '{
"serviceIdentifier": "string",
"envIdentifier": "string",
"environmentType": "PreProduction",
"infraIdentifier": "string",
"artifact": "string",
"chartVersion": "string"
}'
And here's what a successful response looks like:
{
"status": "SUCCESS",
"data": {
"instanceKey": "K8sInstanceInfoDTO_guestbook-ui-blue-67467d95dc-p767r_harness-delegate-ng_gcr.io/heptio-images/ks-guestbook-demo:0.1",
"infraMappingId": "67c595ec1ace02355e5c4887",
"planExecutionId": "_rXmrQ7WQMuZTC6smfSDAw",
"message": null,
"serviceIdentifier": "ownappservice",
"envIdentifier": "samplepipeline_env",
"environmentType": "PreProduction",
"infraIdentifier": "k8s_infra",
"rollbackTriggered": true
},
"metaData": null,
"correlationId": "e1bff107-f76b-44aa-89f8-1490b4599d98"
}
This response gives you everything you need: confirmation of success, the relevant instance and infra IDs, and a planExecutionId to track the rollback execution. It’s clear, predictable, and easy to automate.
Just like that—rollback initiated! You receive immediate confirmation, complete with tracking details such as planExecutionId, ensuring transparency every step of the way.
Harness has your back with a simple, intuitive UI-based rollback option that’s just as powerful. No scripting, no hassle. Here's how you can trigger a rollback in just a few clicks:
That’s it. No YAML, no complex logic—just a smooth path back to stability. For a full walkthrough, check out the official documentation here.
After a rollback, you can easily confirm the successful version and track its status in the Service Dashboard.
You'll roll back swiftly, minimizing downtime, and immediately pivot to diagnosing what went wrong. This simplified rollback isn’t just about convenience—it’s about gaining peace of mind in your deployments.
Try this simplified rollback once, and you'll never look back. Embrace this new era of efficiency and reclaim your valuable time. This API doesn't just streamline rollbacks—it empowers you to confidently handle whatever production throws your way.
Whether you prefer the command line or the click of a button, Harness has you covered:
And remember, this simplicity is just the beginning. Harness is continuously evolving to make your deployment life smoother, safer, and more reliable than ever before.
Welcome to stress-free rollbacks.