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

     1  # Project Scaffolding Layout
     2  
     3  After creating a new operator project using `operator-sdk new --type helm`,
     4  the project directory has numerous generated folders and files. The following
     5  table describes a basic rundown of each generated file/directory.
     6  
     7  | File/Folders | Purpose |
     8  | :---         | :---    |
     9  | deploy | Contains a generic set of Kubernetes manifests for deploying this operator on a Kubernetes cluster. |
    10  | helm-charts/\<kind> | Contains a Helm chart initialized using the equivalent of [`helm create`](https://docs.helm.sh/helm/#helm-create) |
    11  | build | Contains scripts that the operator-sdk uses for build and initialization. |
    12  | watches.yaml | Contains Group, Version, Kind, and Helm chart location. |