When running through the basic helloworld example template the "PLAYBOOK: Choose a playbook" dropdown doesn't not populate any playbooks. I can add the project but cant see any playbooks inside of it. I am using the helloworld project from https://github.com/ansible/tower-example . I double-checked permissions and /var/lib/awx/projects/* is owned by awx:awx so it should be visible, no issues adding the project itself. I also tried creating a template from a project that is git sourced (https://github.com/ansible/ansible-tower-samples.git) and got the same results.
Follow the guide to creating a helloworld project/template:
http://docs.ansible.com/ansible-tower/2.3.0/html/quickstart/create_job.html
It would display and allow me to choose a playbook from the selected project.
No playbooks are listed, can't save template because it is required.
@santizo has an update been run for the project?

I ran one manually for the git helloworld project. The manual project with the same helloworld.yml does the same thing though.
I found issue: https://github.com/ansible/awx/issues/1603 which looks similar to mine, the regex pointed out should match my playbook on line 3.
cat helloworld.yml
---
- name: Hello World!
hosts: all
tasks:
- name: Hello World!
shell: echo "Hi! Tower is working."
I apologize, it was an selinux issue. Both manual and git based projects are working now.
Hi Santizo, could you please elaborate on how you resolved the selinux issue that was preventing the list of playbooks from populating?
@santizo Hi ! I have same problem.... what is the solution you found?
i ran into the similar issue
for me adding "hosts" is missed in the playbook, it's working fine after added the hosts
@santizo Could you please share how you solved this issue?
Most helpful comment
i ran into the similar issue
for me adding "hosts" is missed in the playbook, it's working fine after added the hosts
hosts: testing