summaryrefslogtreecommitdiffstats
path: root/Vagrantfile
diff options
context:
space:
mode:
authorPep TurrĂ³ Mauri <pep@redhat.com>2016-01-29 11:57:43 +0100
committerPep TurrĂ³ Mauri <pep@redhat.com>2016-02-09 12:57:34 +0100
commit9206f379bdc38ffe4d46efea6b56058ab3dda7b7 (patch)
tree7adfba015a5835693cb9bca52607b2221abca5cd /Vagrantfile
parentfda67ef2addee2cb4cb982c8b9e0eb13bcf9ff7e (diff)
downloadopenshift-9206f379bdc38ffe4d46efea6b56058ab3dda7b7.tar.gz
openshift-9206f379bdc38ffe4d46efea6b56058ab3dda7b7.tar.bz2
openshift-9206f379bdc38ffe4d46efea6b56058ab3dda7b7.tar.xz
openshift-9206f379bdc38ffe4d46efea6b56058ab3dda7b7.zip
Add missing atomic- and openshift-enterprise
Some checks related to *enterprise deployments were still only looking for "enterprise" deployment_type. Update them to cover also atomic-enterprise and openshift-enterprise deployment types.
Diffstat (limited to 'Vagrantfile')
-rw-r--r--Vagrantfile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Vagrantfile b/Vagrantfile
index 362e1ff48..a38378289 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -30,7 +30,9 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
libvirt.memory = 1024
libvirt.driver = 'kvm'
case deployment_type
- when "enterprise"
+ when "openshift-enterprise"
+ override.vm.box = "rhel-7"
+ when "atomic-enterprise"
override.vm.box = "rhel-7"
when "origin"
override.vm.box = "centos/7"