From a0b87642ca047952cf6a570000b0905977af407b Mon Sep 17 00:00:00 2001
From: Varac <varac@varac.net>
Date: Mon, 9 Dec 2019 16:21:32 +0100
Subject: [PATCH] Improve cert-manager troubleshooting

---
 docs/troubleshooting.md | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md
index 45bad692c..ef60cfda1 100644
--- a/docs/troubleshooting.md
+++ b/docs/troubleshooting.md
@@ -16,13 +16,19 @@ 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 -n oas-apps get pods | grep cm-acme-http-solver
+    cluster$ kubectl -n oas get pods | 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.
-- 
GitLab