Skip to content

Commit c9d0feb

Browse files
committed
chore(contrib/vagrant): update CoreOS box image
Ideally the CoreOS team will start publishing their .box images to vagrantcloud.com, but until they do, to bake the fresh version we'll need to point to a specific CoreOS release. fixes #755
1 parent 3c8a849 commit c9d0feb

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

Vagrantfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
require_relative 'contrib/coreos/override-plugin.rb'
55

66
Vagrant.configure("2") do |config|
7-
config.vm.box = "coreos-alpha"
8-
config.vm.box_url = "http://storage.core-os.net/coreos/amd64-usr/alpha/coreos_production_vagrant.box"
7+
config.vm.box = "coreos-286.0.0"
8+
config.vm.box_url = "http://storage.core-os.net/coreos/amd64-usr/286.0.0/coreos_production_vagrant.box"
99

1010
config.vm.provider :vmware_fusion do |vb, override|
11-
override.vm.box_url = "http://storage.core-os.net/coreos/amd64-usr/alpha/coreos_production_vagrant_vmware_fusion.box"
11+
override.vm.box_url = "http://storage.core-os.net/coreos/amd64-usr/286.0.0/coreos_production_vagrant_vmware_fusion.box"
1212
end
1313

1414
config.vm.provider :virtualbox do |vb, override|

contrib/vagrant/Vagrantfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ require_relative '../coreos/override-plugin.rb'
66
DEIS_NUM_INSTANCES = (ENV['DEIS_NUM_INSTANCES'].to_i > 0 && ENV['DEIS_NUM_INSTANCES'].to_i) || 3
77

88
Vagrant.configure("2") do |config|
9-
config.vm.box = "coreos-alpha"
10-
config.vm.box_url = "http://storage.core-os.net/coreos/amd64-usr/alpha/coreos_production_vagrant.box"
9+
config.vm.box = "coreos-286.0.0"
10+
config.vm.box_url = "http://storage.core-os.net/coreos/amd64-usr/286.0.0/coreos_production_vagrant.box"
1111

1212
config.vm.provider :vmware_fusion do |vb, override|
13-
override.vm.box_url = "http://storage.core-os.net/coreos/amd64-usr/alpha/coreos_production_vagrant_vmware_fusion.box"
13+
override.vm.box_url = "http://storage.core-os.net/coreos/amd64-usr/286.0.0/coreos_production_vagrant_vmware_fusion.box"
1414
end
1515

1616
config.vm.provider :virtualbox do |vb, override|

0 commit comments

Comments
 (0)