summaryrefslogtreecommitdiffstats
path: root/README_origin.md
diff options
context:
space:
mode:
authorDonovan Muller <donovan.muller@gmail.com>2016-01-05 13:11:40 +0200
committerDonovan Muller <donovan.muller@gmail.com>2016-01-05 16:30:01 +0200
commit1fb688aff6dbd98e454e684f8c6735bd195ae360 (patch)
tree3e491a48c54bac64af7f4a3a1900cfc76ec787e1 /README_origin.md
parent7cee7585ba41958d9e99fbbb56fa0d748567a770 (diff)
downloadopenshift-1fb688aff6dbd98e454e684f8c6735bd195ae360.tar.gz
openshift-1fb688aff6dbd98e454e684f8c6735bd195ae360.tar.bz2
openshift-1fb688aff6dbd98e454e684f8c6735bd195ae360.tar.xz
openshift-1fb688aff6dbd98e454e684f8c6735bd195ae360.zip
Group name as per hosts.origin.example
The example inventory file does not currently work and fails with: PLAY [Gather Cluster facts] *************************************************** skipping: no hosts matched PLAY RECAP ******************************************************************** this is because the group name is actually OSEv3 (inline with https://github.com/openshift/openshift-ansible/blob/master/inventory/byo/hosts.origin.example#L4) and not OSv3. Also added references to inventory/byo/hosts.[origin,ose,aep].example for more complete examples.
Diffstat (limited to 'README_origin.md')
-rw-r--r--README_origin.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README_origin.md b/README_origin.md
index 12e79791e..0387e213f 100644
--- a/README_origin.md
+++ b/README_origin.md
@@ -59,12 +59,12 @@ option to ansible-playbook.
# This is an example of a bring your own (byo) host inventory
# Create an OSEv3 group that contains the masters and nodes groups
-[OSv3:children]
+[OSEv3:children]
masters
nodes
# Set variables common for all OSEv3 hosts
-[OSv3:vars]
+[OSEv3:vars]
# SSH user, this user should allow ssh based auth without requiring a password
ansible_ssh_user=root
@@ -95,6 +95,8 @@ osv3-lb.example.com
The hostnames above should resolve both from the hosts themselves and
the host where ansible is running (if different).
+A more complete example inventory file ([hosts.origin.example](https://github.com/openshift/openshift-ansible/blob/master/inventory/byo/hosts.origin.example)) is available under the [`/inventory/byo`](https://github.com/openshift/openshift-ansible/tree/master/inventory/byo) directory.
+
## Running the ansible playbooks
From the openshift-ansible checkout run:
```sh