diff options
author | Brenton Leanhardt <bleanhar@redhat.com> | 2016-02-10 08:05:47 -0500 |
---|---|---|
committer | Brenton Leanhardt <bleanhar@redhat.com> | 2016-02-10 08:05:47 -0500 |
commit | a0701fd2d6401acf7dc9eb8c1e711d66b83dc554 (patch) | |
tree | 3dad5610d7a07be2ec349b5155d8918c523cffe9 /Vagrantfile | |
parent | b97f68b5b9f044b560baff0607fc423431f0a8cc (diff) | |
parent | 9206f379bdc38ffe4d46efea6b56058ab3dda7b7 (diff) | |
download | openshift-a0701fd2d6401acf7dc9eb8c1e711d66b83dc554.tar.gz openshift-a0701fd2d6401acf7dc9eb8c1e711d66b83dc554.tar.bz2 openshift-a0701fd2d6401acf7dc9eb8c1e711d66b83dc554.tar.xz openshift-a0701fd2d6401acf7dc9eb8c1e711d66b83dc554.zip |
Merge pull request #1364 from codificat/openshift-enterprise
Add missing atomic- and openshift-enterprise
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 4 |
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" |