diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md index 16dd305002f56e59f61606e5c0f56ae68cab0786..9a2600d2139556a1db9ffb7f2a7e04b43d37d234 100644 --- a/docs/troubleshooting.md +++ b/docs/troubleshooting.md @@ -24,13 +24,18 @@ Please check the resulting value of the `acme_staging` key in are fetched from the [Let's Encrypt staging API](https://letsencrypt.org/docs/staging-environment/), which can't be validated by default in your browser. -Are all pods in the `cert-manager` namespace in the `READY` state ? +Are all cert-manager pods in the `oas` namespace in the `READY` state ? - cluster$ kubectl -n cert-manager get pods + cluster$ kubectl -n oas get pods | grep cert-manager + +Are there any `cm-acme-http-solver-*` pods still running, indicating that there +are unfinished certificate requests ? + + cluster$ kubectl get pods --all-namespaces | grep cm-acme-http-solver Show the logs of the main `cert-manager` pod: - cluster$ kubectl -n cert-manager logs -l "app.kubernetes.io/name=cert-manager" + cluster$ kubectl -n oas logs -l "app.kubernetes.io/name=cert-manager" You can `grep` for your cluster domain or for any specific subdomain to narrow down results.