summaryrefslogtreecommitdiffstats
path: root/README_OSE.md
diff options
context:
space:
mode:
authorScott Dodson <sdodson@redhat.com>2015-08-06 12:26:49 -0400
committerScott Dodson <sdodson@redhat.com>2015-08-06 12:26:49 -0400
commit517557bd7e7bf22c5ccfc226df32e86dab70940a (patch)
tree22a2437691c3285974d7cbeff71e5dd0a6ad4a71 /README_OSE.md
parentbf01e8911fa875250856d5d554da0cb779195fa8 (diff)
downloadopenshift-517557bd7e7bf22c5ccfc226df32e86dab70940a.tar.gz
openshift-517557bd7e7bf22c5ccfc226df32e86dab70940a.tar.bz2
openshift-517557bd7e7bf22c5ccfc226df32e86dab70940a.tar.xz
openshift-517557bd7e7bf22c5ccfc226df32e86dab70940a.zip
Revert "namespace the byo inventory so the group names aren't so generic"
Diffstat (limited to 'README_OSE.md')
-rw-r--r--README_OSE.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/README_OSE.md b/README_OSE.md
index 116717033..31173e5d6 100644
--- a/README_OSE.md
+++ b/README_OSE.md
@@ -65,8 +65,8 @@ option to ansible-playbook.
# Create an OSEv3 group that contains the masters and nodes groups
[OSEv3:children]
-openshift_masters
-openshift_nodes
+masters
+nodes
# Set variables common for all OSEv3 hosts
[OSEv3:vars]
@@ -96,11 +96,11 @@ openshift_additional_repos=[{'id': 'ose-devel', 'name': 'ose-devel',
'https://copr-be.cloud.fedoraproject.org/results/maxamillion/origin-next/pubkey.gpg'}]
# host group for masters
-[openshift_masters]
+[masters]
ose3-master.example.com
# host group for nodes
-[openshift_nodes]
+[nodes]
ose3-node[1:2].example.com
```
@@ -234,7 +234,7 @@ what we expect them to be (if not, we can override them).
To override the the defaults, you can set the variables in your inventory:
```
...snip...
-[openshift_masters]
+[masters]
ose3-master.example.com openshift_ip=1.1.1.1 openshift_hostname=ose3-master.example.com openshift_public_ip=2.2.2.2 openshift_public_hostname=ose3-master.public.example.com
...snip...
```