summaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorAdam Miller <admiller@redhat.com>2015-08-05 09:53:37 -0500
committerAdam Miller <admiller@redhat.com>2015-08-05 09:53:37 -0500
commit0497eac6ad52db6aefc947d2ecb5843c42b236da (patch)
tree9e447bce305f7333b04e71ac1458c91a2a79d0ef /Vagrantfile
parentbec613a2237df25164de03524414224779fcab4c (diff)
downloadopenshift-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 '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",