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 /README_origin.md | |
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 'README_origin.md')
-rw-r--r-- | README_origin.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/README_origin.md b/README_origin.md index f13fe660a..a30ad2c71 100644 --- a/README_origin.md +++ b/README_origin.md @@ -54,8 +54,8 @@ option to ansible-playbook. # Create an OSEv3 group that contains the masters and nodes groups [OSv3:children] -masters -nodes +openshift_masters +openshift_nodes # Set variables common for all OSEv3 hosts [OSv3:vars] @@ -68,11 +68,11 @@ ansible_ssh_user=root deployment_type=origin # host group for masters -[masters] +[openshift_masters] osv3-master.example.com # host group for nodes -[nodes] +[openshift_nodes] osv3-node[1:2].example.com ``` @@ -207,7 +207,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... -[masters] +[openshift_masters] osv3-master.example.com openshift_ip=1.1.1.1 openshift_hostname=osv3-master.example.com openshift_public_ip=2.2.2.2 openshift_public_hostname=osv3-master.public.example.com ...snip... ``` |