diff options
author | abwalczyk <89880863+abwalczyk@users.noreply.github.com> | 2023-08-17 18:22:51 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-17 18:22:51 +0200 |
commit | a89e266febfed3c197870c4ff6ca8622b68dcbf3 (patch) | |
tree | 4c1bc4b70a4986e6c06027fda423123a848bd509 /docs/development/kind.md | |
parent | Update UI_NEXT build to set PRODUCT and PUBLIC_PATH (diff) | |
download | awx-a89e266febfed3c197870c4ff6ca8622b68dcbf3.tar.xz awx-a89e266febfed3c197870c4ff6ca8622b68dcbf3.zip |
Fixed task and web docs (#14350)
Diffstat (limited to 'docs/development/kind.md')
-rw-r--r-- | docs/development/kind.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/development/kind.md b/docs/development/kind.md index d3a11cc4cd..c72ccede4c 100644 --- a/docs/development/kind.md +++ b/docs/development/kind.md @@ -137,12 +137,12 @@ To retrieve your admin password To tail logs from the task containers ```bash - kubectl logs -f deployment/awx -n awx -c awx-web + kubectl logs -f deployment/awx-task -n awx -c awx-task ``` To tail logs from the web containers ```bash - kubectl logs -f deployment/awx -n awx -c awx-web + kubectl logs -f deployment/awx-web -n awx -c awx-web ``` NOTE: If there's multiple replica of the awx deployment you can use `stern` to tail logs from all replicas. For more information about `stern` check out https://github.com/wercker/stern. |