From a1891c0c1f5c12b7eec5181fa4ce78fb807a28a5 Mon Sep 17 00:00:00 2001 From: kurokobo <2920259+kurokobo@users.noreply.github.com> Date: Tue, 21 Mar 2023 01:00:32 +0900 Subject: [PATCH] docs: add command to gather logs from init containers --- tips/troubleshooting.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tips/troubleshooting.md b/tips/troubleshooting.md index 66cb612..68a47f5 100644 --- a/tips/troubleshooting.md +++ b/tips/troubleshooting.md @@ -95,6 +95,9 @@ 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 -c init` + - `kubectl -n awx logs -f deployment/awx -c init-projects` - Logs of AWX related containers - `kubectl -n awx logs -f deployment/awx -c awx-web` - `kubectl -n awx logs -f deployment/awx -c awx-task`