acme troubleshooting: how to fix errored challenges#1602
acme troubleshooting: how to fix errored challenges#1602jplitza wants to merge 1 commit intocert-manager:masterfrom
Conversation
✅ Deploy Preview for cert-manager ready!Built without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify project configuration. |
Signed-off-by: Jan-Philipp Litza <[email protected]>
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
There was a problem hiding this comment.
Pull Request Overview
This PR adds guidance for handling ACME challenges that are in an "errored" state by documenting that it's safe to delete errored challenges, which will trigger cert-manager to create new ones and retry the process.
- Adds documentation explaining that errored challenges can be safely deleted for retry behavior
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| $ kubectl get challenge <challenge-name> -ojsonpath='{.spec.authorizationURL}' | ||
| ``` | ||
|
|
||
| In case your Challenge is in the State "errored", once you resolved the underlying issue, you can safely delete it. cert-manager will then request a new Challenge and retry. |
There was a problem hiding this comment.
The word 'State' should be lowercase as it refers to the status field rather than a proper noun.
| In case your Challenge is in the State "errored", once you resolved the underlying issue, you can safely delete it. cert-manager will then request a new Challenge and retry. | |
| In case your Challenge is in the state "errored", once you resolved the underlying issue, you can safely delete it. cert-manager will then request a new Challenge and retry. |
I was looking for how to proceed if a Challenge is in "errored" state with the details pointing to a timeout. But all I could find in the troubleshooting guide (or really, The Internet) was what underlying problems could be in case Challenges or Orders are stuck in "pending". Thus, I deleted the Challenge, and a new one appeared. So maybe it should be mentioned that deleting Challenges is safe.