This message was deleted.
# general
s
This message was deleted.
d
It ends with
**deleting failed**
for that resource saying
error: '<http://challenges.acme.cert-manager.io|challenges.acme.cert-manager.io>' timed out waiting to be Ready
b
if you installed cert-manager with pulumi, you won't see it listed with the helm CLI, as we only template the yaml then apply it with pulumi. if you run
kubectl api-resources
you'll see the customresource definition is probably still there. This issue is usually because you have a challenge that exists in your cluster, and so the CRD can't be deleted because it has a dependency. Try doing
kubectl get <http://challenges.acme.cert-manager.io|challenges.acme.cert-manager.io> --all-namespaces
d
@billowy-army-68599 oh, I see, thanks. Do you have any tips on how to delete them?
Copy code
kc delete challenge/domains-tls-4054541511-4081547882-2945630014
Error from server: conversion webhook for <http://acme.cert-manager.io/v1alpha2|acme.cert-manager.io/v1alpha2>, Kind=Challenge failed: Post <https://cert-manager-webhook.cert-manager.svc:443/convert?timeout=30s>: service "cert-manager-webhook" not found
b
You should be able to kubectl delete them
d
@billowy-army-68599 killed the cluster from aws console and refreshed and then up 👍 works fine now, thanks!