summaryrefslogtreecommitdiffstats
path: root/docs/repo_structure.md
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2017-04-28 10:47:24 -0400
committerGitHub <noreply@github.com>2017-04-28 10:47:24 -0400
commitb23be0da38759744cebc8d4b454af1299d97a445 (patch)
tree32c3d9b18facfff34bc924347205f4981dc742c9 /docs/repo_structure.md
parent2b420c18beae43d2f92f5a95bd177d427e81737d (diff)
parent1d80c4cef89ce10bb71671cfffa0f35dbb28ea93 (diff)
downloadopenshift-b23be0da38759744cebc8d4b454af1299d97a445.tar.gz
openshift-b23be0da38759744cebc8d4b454af1299d97a445.tar.bz2
openshift-b23be0da38759744cebc8d4b454af1299d97a445.tar.xz
openshift-b23be0da38759744cebc8d4b454af1299d97a445.zip
Merge pull request #3983 from rhcarvalho/docs-and-ci
Document pull request process and improve contribution guide
Diffstat (limited to 'docs/repo_structure.md')
-rw-r--r--docs/repo_structure.md54
1 files changed, 54 insertions, 0 deletions
diff --git a/docs/repo_structure.md b/docs/repo_structure.md
new file mode 100644
index 000000000..693837fba
--- /dev/null
+++ b/docs/repo_structure.md
@@ -0,0 +1,54 @@
+# Repository structure
+
+### Ansible
+
+```
+.
+├── inventory Contains dynamic inventory scripts, and examples of
+│ Ansible inventories.
+├── library Contains Python modules used by the playbooks.
+├── playbooks Contains Ansible playbooks targeting multiple use cases.
+└── roles Contains Ansible roles, units of shared behavior among
+ playbooks.
+```
+
+#### Ansible plugins
+
+These are plugins used in playbooks and roles:
+
+```
+.
+├── ansible-profile
+├── callback_plugins
+├── filter_plugins
+└── lookup_plugins
+```
+
+### Scripts
+
+```
+.
+├── bin [DEPRECATED] Contains the `bin/cluster` script, a
+│ wrapper around the Ansible playbooks that ensures proper
+│ configuration, and facilitates installing, updating,
+│ destroying and configuring OpenShift clusters.
+│ Note: this tool is kept in the repository for legacy
+│ reasons and will be removed at some point.
+└── utils Contains the `atomic-openshift-installer` command, an
+ interactive CLI utility to install OpenShift across a
+ set of hosts.
+```
+
+### Documentation
+
+```
+.
+└── docs Contains documentation for this repository.
+```
+
+### Tests
+
+```
+.
+└── test Contains tests.
+```