diff options
author | Scott Dodson <sdodson@redhat.com> | 2017-01-17 11:20:46 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-17 11:20:46 -0500 |
commit | e810fb6abab0c6fe9198bfc3f39c82ca8054f76e (patch) | |
tree | 1aea342438ad4d1e6eb24a5263472c8c1a00b5d4 /playbooks | |
parent | def9d435ef60b1f11c29db2fc98fe266bbd4041d (diff) | |
parent | a0732616fca9fb42db7479ce0b3a339292f42a97 (diff) | |
download | openshift-e810fb6abab0c6fe9198bfc3f39c82ca8054f76e.tar.gz openshift-e810fb6abab0c6fe9198bfc3f39c82ca8054f76e.tar.bz2 openshift-e810fb6abab0c6fe9198bfc3f39c82ca8054f76e.tar.xz openshift-e810fb6abab0c6fe9198bfc3f39c82ca8054f76e.zip |
Merge pull request #3083 from rhcarvalho/doc-playbooks
Document playbook directories
Diffstat (limited to 'playbooks')
-rw-r--r-- | playbooks/README.md | 19 | ||||
-rw-r--r-- | playbooks/adhoc/README.md | 5 | ||||
-rw-r--r-- | playbooks/aws/README.md | 4 | ||||
-rw-r--r-- | playbooks/byo/README.md | 11 | ||||
-rw-r--r-- | playbooks/common/README.md | 9 | ||||
-rw-r--r-- | playbooks/gce/README.md | 4 | ||||
-rw-r--r-- | playbooks/libvirt/README.md | 4 | ||||
-rw-r--r-- | playbooks/openstack/README.md | 4 |
8 files changed, 60 insertions, 0 deletions
diff --git a/playbooks/README.md b/playbooks/README.md new file mode 100644 index 000000000..5857a9f59 --- /dev/null +++ b/playbooks/README.md @@ -0,0 +1,19 @@ +# openshift-ansible playbooks + +In summary: + +- [`byo`](byo) (_Bring Your Own_ hosts) has the most actively maintained + playbooks for installing, upgrading and performing others tasks on OpenShift + clusters. +- [`common`](common) has a set of playbooks that are included by playbooks in + `byo` and others. + +And: + +- [`adhoc`](adhoc) is a generic home for playbooks and tasks that are community + supported and not officially maintained. +- [`aws`](aws), [`gce`](gce), [`libvirt`](libvirt) and [`openstack`](openstack) + are related to the [`bin/cluster`](../bin) tool and its usage is deprecated. + +Refer to the `README.md` file in each playbook directory for more information +about them. diff --git a/playbooks/adhoc/README.md b/playbooks/adhoc/README.md new file mode 100644 index 000000000..69b9d3135 --- /dev/null +++ b/playbooks/adhoc/README.md @@ -0,0 +1,5 @@ +# _Ad hoc_ playbooks + +This directory holds playbooks and tasks that really don't have a better home. +Existing playbooks living here are community supported and not officially +maintained. diff --git a/playbooks/aws/README.md b/playbooks/aws/README.md new file mode 100644 index 000000000..99698b4d0 --- /dev/null +++ b/playbooks/aws/README.md @@ -0,0 +1,4 @@ +# AWS playbooks + +This playbook directory is meant to be driven by [`bin/cluster`](../../bin), +which is community supported and most use is considered deprecated. diff --git a/playbooks/byo/README.md b/playbooks/byo/README.md new file mode 100644 index 000000000..460fd7cf6 --- /dev/null +++ b/playbooks/byo/README.md @@ -0,0 +1,11 @@ +# Bring Your Own hosts playbooks + +This directory has the most actively used, maintained and supported set of +playbooks for installing, upgrading and performing others tasks on OpenShift +clusters. + +Usage is documented in the official OpenShift documentation pages, under the +Advanced Installation topic: + +- [OpenShift Origin: Advanced Installation](https://docs.openshift.org/latest/install_config/install/advanced_install.html) +- [OpenShift Container Platform: Advanced Installation](https://docs.openshift.com/container-platform/latest/install_config/install/advanced_install.html) diff --git a/playbooks/common/README.md b/playbooks/common/README.md new file mode 100644 index 000000000..0b5e26989 --- /dev/null +++ b/playbooks/common/README.md @@ -0,0 +1,9 @@ +# Common playbooks + +This directory has a generic set of playbooks that are included by playbooks in +[`byo`](../byo), as well as other playbooks related to the +[`bin/cluster`](../../bin) tool. + +Note: playbooks in this directory use generic group names that do not line up +with the groups used by the `byo` playbooks or `bin/cluster` derived playbooks, +requiring an explicit remapping of groups. diff --git a/playbooks/gce/README.md b/playbooks/gce/README.md new file mode 100644 index 000000000..0514d6f50 --- /dev/null +++ b/playbooks/gce/README.md @@ -0,0 +1,4 @@ +# GCE playbooks + +This playbook directory is meant to be driven by [`bin/cluster`](../../bin), +which is community supported and most use is considered deprecated. diff --git a/playbooks/libvirt/README.md b/playbooks/libvirt/README.md new file mode 100644 index 000000000..3ce46a76f --- /dev/null +++ b/playbooks/libvirt/README.md @@ -0,0 +1,4 @@ +# libvirt playbooks + +This playbook directory is meant to be driven by [`bin/cluster`](../../bin), +which is community supported and most use is considered deprecated. diff --git a/playbooks/openstack/README.md b/playbooks/openstack/README.md new file mode 100644 index 000000000..a6d8d6995 --- /dev/null +++ b/playbooks/openstack/README.md @@ -0,0 +1,4 @@ +# OpenStack playbooks + +This playbook directory is meant to be driven by [`bin/cluster`](../../bin), +which is community supported and most use is considered deprecated. |