github.com/jmrodri/operator-sdk@v0.5.0/doc/ansible/project_layout.md (about)

     1  # Project Scaffolding Layout
     2  
     3  After creating a new operator project using 
     4  `operator-sdk new --type ansible`, the project directory has numerous generated folders and files. The following table describes a basic rundown of each generated file/directory.
     5  
     6  
     7  | File/Folders   | Purpose                           |
     8  | :---           | :--- |
     9  | deploy | Contains a generic set of kubernetes manifests for deploying this operator on a kubernetes cluster. |
    10  | roles/<kind> | Contains an Ansible Role initialized using [Ansible Galaxy](https://docs.ansible.com/ansible/latest/reference_appendices/galaxy.html) |
    11  | build | Contains scripts that the operator-sdk uses for build and initialization. |
    12  | watches.yaml | Contains Group, Version, Kind, and Ansible invocation method. |