Skip to content

Commit

Permalink
Bump Vagrant machine RAM requirement
Browse files Browse the repository at this point in the history
We're now running out of memory building OpenShift in the latest
F23 vagrant image.  3072 was chosen because it matches the DIND
requirement mentioned in CONTRIBUTING.
  • Loading branch information
dcbw committed Feb 25, 2016
1 parent 04cc91b commit efa7b80
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions CONTRIBUTING.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,6 @@ use cases.
To run a dind cluster in a VM, follow steps 1-3 of the Vagrant
instructions and then execute the following:

# Extra memory is required to build the extended tests
$ export OPENSHIFT_MEMORY=3072
$ export OPENSHIFT_DIND_DEV_CLUSTER=true
$ vagrant up

Expand Down
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
"num_minions" => ENV['OPENSHIFT_NUM_MINIONS'] || 2,
"rebuild_yum_cache" => false,
"cpus" => ENV['OPENSHIFT_NUM_CPUS'] || 2,
"memory" => ENV['OPENSHIFT_MEMORY'] || 2560,
"memory" => ENV['OPENSHIFT_MEMORY'] || 3072,
"fixup_net_udev" => ENV['OPENSHIFT_FIXUP_NET_UDEV'] || true,
"skip_build" => ENV['OPENSHIFT_SKIP_BUILD'] || false,
"sync_folders_type" => nil,
Expand Down

0 comments on commit efa7b80

Please sign in to comment.