summaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorWesley Hearn <wesley.s.hearn@gmail.com>2015-08-05 11:17:52 -0400
committerWesley Hearn <wesley.s.hearn@gmail.com>2015-08-05 11:17:52 -0400
commitc76ded1fd1c67059086a18b3af28190aa8c641f2 (patch)
tree5ed14f564cc2ef37e5e36becf3bd30f76fbf5674 /Vagrantfile
parente7b7b7946815d1463b10c34914b50e955fc73802 (diff)
parent0497eac6ad52db6aefc947d2ecb5843c42b236da (diff)
downloadopenshift-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 'Vagrantfile')
-rw-r--r--Vagrantfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Vagrantfile b/Vagrantfile
index a832ae84e..8e6796927 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -52,8 +52,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
ansible.limit = 'all'
ansible.sudo = true
ansible.groups = {
- "masters" => ["master"],
- "nodes" => ["node1", "node2"],
+ "openshift_masters" => ["master"],
+ "openshift_nodes" => ["node1", "node2"],
}
ansible.extra_vars = {
openshift_deployment_type: "origin",