From 3d1a82d57f1c5a3622c318e5ce06a967ebfc13db Mon Sep 17 00:00:00 2001 From: kurokobo Date: Mon, 27 May 2024 22:36:17 +0900 Subject: [PATCH] docs: correct commands to gather logs from init containers (#366) --- tips/troubleshooting.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tips/troubleshooting.md b/tips/troubleshooting.md index 7269f08..fb21020 100644 --- a/tips/troubleshooting.md +++ b/tips/troubleshooting.md @@ -102,7 +102,10 @@ For AWX Operator and AWX, specifically, the following commands are helpful. - Logs of AWX Operator - `kubectl -n awx logs -f deployment/awx-operator-controller-manager` - Logs of AWX related init containers - - `kubectl -n awx logs -f deployment/awx-task -c init` + - `kubectl -n awx logs -f deployment/awx-web -c init` + - `kubectl -n awx logs -f deployment/awx-web -c init-projects` + - `kubectl -n awx logs -f deployment/awx-task -c init-database` + - `kubectl -n awx logs -f deployment/awx-task -c init-receptor` - `kubectl -n awx logs -f deployment/awx-task -c init-projects` - Logs of AWX related job container - `kubectl -n awx logs -f job/awx-migration-`