diff options
author | Adam Miller <admiller@redhat.com> | 2015-08-05 09:53:37 -0500 |
---|---|---|
committer | Adam Miller <admiller@redhat.com> | 2015-08-05 09:53:37 -0500 |
commit | 0497eac6ad52db6aefc947d2ecb5843c42b236da (patch) | |
tree | 9e447bce305f7333b04e71ac1458c91a2a79d0ef /inventory/byo | |
parent | bec613a2237df25164de03524414224779fcab4c (diff) | |
download | openshift-0497eac6ad52db6aefc947d2ecb5843c42b236da.tar.gz openshift-0497eac6ad52db6aefc947d2ecb5843c42b236da.tar.bz2 openshift-0497eac6ad52db6aefc947d2ecb5843c42b236da.tar.xz openshift-0497eac6ad52db6aefc947d2ecb5843c42b236da.zip |
namespace the byo inventory so the group names aren't so generic
Diffstat (limited to 'inventory/byo')
-rw-r--r-- | inventory/byo/hosts.example | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/inventory/byo/hosts.example b/inventory/byo/hosts.example index 4c652d06e..c8a4272f0 100644 --- a/inventory/byo/hosts.example +++ b/inventory/byo/hosts.example @@ -2,8 +2,8 @@ # Create an OSEv3 group that contains the masters and nodes groups [OSEv3:children] -masters -nodes +openshift_masters +openshift_nodes etcd # Set variables common for all OSEv3 hosts @@ -58,13 +58,13 @@ deployment_type=enterprise #osm_default_subdomain=apps.test.example.com # host group for masters -[masters] +[openshift_masters] ose3-master[1:3]-ansible.test.example.com [etcd] ose3-etcd[1:3]-ansible.test.example.com # host group for nodes -[nodes] +[openshift_nodes] ose3-master[1:3]-ansible.test.example.com openshift_scheduleable=False ose3-node[1:2]-ansible.test.example.com openshift_node_labels="{'region': 'primary', 'zone': 'default'}" |