Coder Social home page Coder Social logo

support for additional disk about beaker HOT 8 CLOSED

voxpupuli avatar voxpupuli commented on June 19, 2024
support for additional disk

from beaker.

Comments (8)

anodelman avatar anodelman commented on June 19, 2024

This sounds like a small patch for vagrant - would it just be the ability to pass through an additional variable/setting to the vagrant file? Could you give me a sample of how the vagrant file would look when correctly configured?

from beaker.

 avatar commented on June 19, 2024

@anodelman I don't know much about vagrant, sorry :-)

from beaker.

aldavud avatar aldavud commented on June 19, 2024

An example of a complete vagrant file would look like

Vagrant.configure("2") do |c|
  c.vm.define 'first' do |v|
    v.vm.hostname = 'first'
    v.vm.box = 'ubuntu-server-12042-x64-vbox4210-nocm'
    v.vm.box_url = 'http://puppet-vagrant-boxes.puppetlabs.com/ubuntu-server-12042-x64-vbox4210-nocm.box'
    v.vm.network :private_network, :ip => '10.11.12.2'
    v.vm.provider 'virtualbox' do |prov, override|
    prov.customize ['modifyvm', :id, '--macaddress1','0800271016FA']
 prov.customize ['createhd', '--filename', '/tmp/sparediskfirst', '--size', 10240]
 prov.customize ['storageattach', :id, '--storagectl', 'SATA Controller', '--port', 1, '--device', 0, '--type', 'hdd', '--medium', '/tmp/sparediskfirst.vdi']
    end
  end
end

from beaker.

anodelman avatar anodelman commented on June 19, 2024

I haven't used additional disk for vagrant... is the disk shared amongst all vagrant boxes defined in the Vagrantfile? Or is it a new disk per instance? I'll keep poking around online to find out, but if anyone has the answer quicker than that I'd appreciate it.

from beaker.

 avatar commented on June 19, 2024

One disk for one specific instance, not a disk shared between instances.

from beaker.

anodelman avatar anodelman commented on June 19, 2024

In PR, #303

This just covers vagrant support. I think that we should split out requests for additional disk by hypervisor.

from beaker.

anodelman avatar anodelman commented on June 19, 2024

vagrant support for additional disk in #303.

from beaker.

anodelman avatar anodelman commented on June 19, 2024

Please file further issues for support for additional hypervisors.

from beaker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.