good afernoon sir.... got it sorted out.....exactly as you have described.
thank you for your posts as well as following up. greatly appreciated. take care On Thu, Mar 3, 2016 at 1:00 PM, Alvaro Miranda Aguilera <[email protected]> wrote: > Hello, > > Can you share your Vagrantfile? > > basically, when you define a new box, you can put the customization block > inside. > > ie: > > Vagrant.configure("2") do |config| > config.vm.provision "shell", inline: "echo Hello" > > config.vm.define "web" do |web| > web.vm.provider "virtualbox" do |v| > v.memory = 1024 > v.cpus = 2 > end > > web.vm.box = "apache" > end > > config.vm.define "db" do |db| > db.vm.provider "virtualbox" do |v| > v.memory = 2048 > v.cpus = 2 > end > db.vm.box = "mysql" > end > end > > Alvaro. > > > > > On Fri, Mar 4, 2016 at 4:09 AM, <[email protected]> wrote: > >> Good morning.... >> >> I am very new with vagrant so please bear with me.... >> >> i can create a cluster of 4 centos vm's. it works great and even i can do >> it. >> >> however what i need is to be able to create the same cluster with each of >> the vm's allocated a different amount of memory. >> >> is that possible?? >> >> thank you in advance for your guidance. >> >> danab >> >> -- >> This mailing list is governed under the HashiCorp Community Guidelines - >> https://www.hashicorp.com/community-guidelines.html. Behavior in >> violation of those guidelines may result in your removal from this mailing >> list. >> >> GitHub Issues: https://github.com/mitchellh/vagrant/issues >> IRC: #vagrant on Freenode >> --- >> You received this message because you are subscribed to the Google Groups >> "Vagrant" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> To view this discussion on the web visit >> https://groups.google.com/d/msgid/vagrant-up/b94fdb00-b06d-4d8d-9d79-b7472ffb9f30%40googlegroups.com >> <https://groups.google.com/d/msgid/vagrant-up/b94fdb00-b06d-4d8d-9d79-b7472ffb9f30%40googlegroups.com?utm_medium=email&utm_source=footer> >> . >> For more options, visit https://groups.google.com/d/optout. >> > > -- > This mailing list is governed under the HashiCorp Community Guidelines - > https://www.hashicorp.com/community-guidelines.html. Behavior in > violation of those guidelines may result in your removal from this mailing > list. > > GitHub Issues: https://github.com/mitchellh/vagrant/issues > IRC: #vagrant on Freenode > --- > You received this message because you are subscribed to a topic in the > Google Groups "Vagrant" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/vagrant-up/37woVynD8eg/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/vagrant-up/CAHqq0exo1JNm_mGHBwWNbAT_gbsxdbGojiOZ6R5Bz_%3DL0LWJ7g%40mail.gmail.com > <https://groups.google.com/d/msgid/vagrant-up/CAHqq0exo1JNm_mGHBwWNbAT_gbsxdbGojiOZ6R5Bz_%3DL0LWJ7g%40mail.gmail.com?utm_medium=email&utm_source=footer> > . > > For more options, visit https://groups.google.com/d/optout. > -- Thank you Best wishes Dana Brenneman Pivotal Education [email protected] 508 864-6489 -- This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list. GitHub Issues: https://github.com/mitchellh/vagrant/issues IRC: #vagrant on Freenode --- You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/CA%2B5amC0mOLGV3zhmUzUEnboLhS1DUGWpctfqqYMV%3D7Sk-y%3D0BA%40mail.gmail.com. For more options, visit https://groups.google.com/d/optout.
