-
Notifications
You must be signed in to change notification settings - Fork 100
Recovery Agent Content Addition & Updates #2924
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
502f889
Create recovery-agent
emilypearce-octopus 42b43fd
Delete src/pages/docs/octopus-ai/recovery-agent
emilypearce-octopus ee42b72
Create index.mdx
emilypearce-octopus 614558f
Add Recovery Agent overview and FAQ section
emilypearce-octopus 15086d8
Revise Octopus AI Recovery Agent description
emilypearce-octopus df22e8b
Update Recovery Agent documentation
emilypearce-octopus 4ca0c76
Change modDate to 2025-11-20
emilypearce-octopus edeb1aa
Update dates and title in recovery agent documentation
emilypearce-octopus aa77353
Fix markdown lint errors and support link.
steve-fenton-octopus ad00993
Fix support link
steve-fenton-octopus 1696d34
Update src/pages/docs/octopus-ai/recovery-agent/index.mdx
emilypearce-octopus 1aae7ac
Update src/pages/docs/octopus-ai/index.mdx
emilypearce-octopus File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,56 @@ | ||
| --- | ||
| layout: src/layouts/Default.astro | ||
| pubDate: 2025-11-20 | ||
| modDate: 2025-11-20 | ||
| title: Octopus Recovery Agent | ||
| navTitle: Overview | ||
| navSection: Octopus Recovery Agent | ||
| description: An overview of the the Recovery Agent feature, allowing AI clients to leverage the power of Octopus Deploy | ||
| navOrder: 3 | ||
| --- | ||
|
|
||
| One of the most important aspects of Continuous Delivery is being able to rapidly recover when something goes wrong. There are many tools you can use to boost recovery, like feature toggles, blue/green deployments, canary deployments, and rollbacks. A short mean time to recovery is the hallmark of an elite software delivery engine. | ||
|
|
||
| The Recovery Agent is designed to help you recover from failure, fast. In the current release the agent uses AI to analyze and diagnose the cause of deployment failures within the deployments you manage, and suggest potential steps to recover. In the future, the Agent will be able to execute those remediation steps for you. You will be in the loop and in control, but the Recovery Agent will take care of the heavy lifting in the heat of the moment. | ||
|
|
||
| The Recovery Agent is currently an Alpha release feature, and has been developed and tested against a limited set of failure scenarios. We will continue to evolve and refine the Recovery Agent alongside customer feedback we gain throughout the Alpha release phase. | ||
|
|
||
| ## FAQ | ||
|
|
||
| ### Who is the Recovery Agent available to? | ||
|
|
||
| The Recovery Agent is available to Octopus Cloud customers only. We do not yet have a specific date for when it will be available to self-hosted customers. | ||
|
|
||
| ### How do I get early access? | ||
|
|
||
| For early access, [fill in this form](https://octopusdeploy.typeform.com/to/yNMUnzxc), and we’ll add this feature to your instance. | ||
|
|
||
| ### Is my data being used to train AI? | ||
|
|
||
| No. Octopus Agents leverage pre-trained foundational AI models from providers like OpenAI. We host these models in Azure, as we do with all of our Octopus Cloud resources. | ||
|
|
||
| Interactions with foundational AI models are entirely stateless. Your data is not used to train the models. Your data is not stored by the models, and they do not retain a “history” of interactions. | ||
|
|
||
| ### How is my data being processed? | ||
|
|
||
| Our foundational models are hosted within Azure, which provides strong guarantees about how your data is processed and stored. | ||
|
|
||
| In short, your prompts (inputs) and completions (outputs) are not available to other customers and are not used to train the models. | ||
|
|
||
| If your Octopus Cloud instance is hosted in the EU, it will work with a foundational model hosted in Sweden, ensuring all data transmission and processing happens within an EU member country. Octopus complies with the European Union’s General Data Protection Regulation ([GDPR](https://octopus.com/legal/gdpr)). | ||
|
|
||
| It is important to note that Octopus never prints out or sends secrets to external services as long as they are clearly [identified as sensitive](https://octopus.com/docs/projects/variables/sensitive-variables). | ||
|
|
||
| For a deeper understanding of the technical aspects of data processing, please consult [Data, privacy, and security for Azure Direct Models in Azure AI Foundry](https://learn.microsoft.com/en-us/azure/ai-foundry/responsible-ai/openai/data-privacy?tabs=azure-portal). | ||
|
|
||
| ### Will you charge me for this feature? | ||
|
|
||
| We won’t charge customers for this feature while it’s an Alpha release. This may change in the future as we move to a full feature release, however we’ll clearly inform customers before introducing pricing. | ||
|
|
||
| ### Is there any setup or configuration for this feature? | ||
|
|
||
| No! Once enabled, this feature will appear in your UI as shown in the image above. | ||
|
|
||
| ### Can I opt out of having the Recovery Agent in my instance? | ||
|
|
||
| Yes, you can get in touch with our [Support team](https://octopus.com/support) who can opt you out. |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The H1 tag comes from the
title:, so we don't need to add it to the content.