We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95ee8ee commit 0a02f0aCopy full SHA for 0a02f0a
cluster/Vagrantfile
@@ -11,6 +11,7 @@ UBUNTU = 'ubuntu'.freeze
11
CENTOS = 'centos'.freeze
12
RHEL = 'rhel7'.freeze
13
14
+BOX_VERSION = ENV['BOX_VERSION'] || '1707.01'.freeze
15
HOST_SHARED_FOLDER = './export/'.freeze
16
GUEST_SHARED_FOLDER = '/shared'.freeze
17
# Different orchestration platforms we support
@@ -206,6 +207,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
206
207
c.vm.box_version = '0.10.1'
208
else
209
c.vm.box = 'centos/7'
210
+ c.vm.box_version = BOX_VERSION
211
end
212
config.ssh.insert_key = false
213
0 commit comments