diff options
author | Wesley Hearn <wesley.s.hearn@gmail.com> | 2015-08-05 11:17:52 -0400 |
---|---|---|
committer | Wesley Hearn <wesley.s.hearn@gmail.com> | 2015-08-05 11:17:52 -0400 |
commit | c76ded1fd1c67059086a18b3af28190aa8c641f2 (patch) | |
tree | 5ed14f564cc2ef37e5e36becf3bd30f76fbf5674 /inventory | |
parent | e7b7b7946815d1463b10c34914b50e955fc73802 (diff) | |
parent | 0497eac6ad52db6aefc947d2ecb5843c42b236da (diff) | |
download | openshift-c76ded1fd1c67059086a18b3af28190aa8c641f2.tar.gz openshift-c76ded1fd1c67059086a18b3af28190aa8c641f2.tar.bz2 openshift-c76ded1fd1c67059086a18b3af28190aa8c641f2.tar.xz openshift-c76ded1fd1c67059086a18b3af28190aa8c641f2.zip |
Merge pull request #423 from maxamillion/namespace-inventory
namespace the byo inventory so the group names aren't so generic
Diffstat (limited to 'inventory')
-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'}" |