Merge pull request #293 from kurokobo/manual

fix: improve troubleshooting guide for manual project
This commit is contained in:
kurokobo 2024-01-10 00:46:46 +09:00 committed by GitHub
commit be65d88d7f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -33,3 +33,13 @@ If you got following warning while selecting `Playbook Directory`, try super-rel
> ⚠WARNING:
> There are no available playbook directories in /var/lib/awx/projects
If super-reloading does not help you, ensure your playbooks are visible under project directory on `/var/lib/awx/projects` in awx-web pod.
- Ensure your project directory is visible
- `kubectl -n awx exec -it deployment/awx-web -c awx-web -- ls -l /var/lib/awx/projects`
- Ensure your project directory contains at least one playbook
- `kubectl -n awx exec -it deployment/awx-web -c awx-web -- ls -l /var/lib/awx/projects/<YOUR_PROJECT_DIRECTORY>`
> [!IMPORTANT]
> Any empty project directories and the directories that don't contain any valid playbooks will not be listed in UI. Also all playbooks have to be placed under project directory (means sub directory) on `/var/lib/awx/projects`, not directly under `/var/lib/awx/projects`.